From 2456c64a4002f504669d6710d03937c681c8bbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Garc=C3=ADa=20Amor?= Date: Fri, 4 Oct 2024 11:09:20 +0200 Subject: [PATCH] Adds Test Build GitHub action --- .github/workflows/multi-arch-test-build.yml | 41 +++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/multi-arch-test-build.yml diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml new file mode 100644 index 0000000..a1a8d14 --- /dev/null +++ b/.github/workflows/multi-arch-test-build.yml @@ -0,0 +1,41 @@ +name: Test Build + +on: [push, pull_request] + +jobs: + build: + name: ${{ matrix.arch }} build + runs-on: ubuntu-latest + strategy: + matrix: + arch: + - x86_64 + - mips_24kc + - mipsel_24kc + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Build + uses: openwrt/gh-action-sdk@main + env: + ARCH: ${{ matrix.arch }} + PACKAGES: zerotier + V: s + + - name: Store packages + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.arch }}-packages + path: bin/packages/${{ matrix.arch }}/action/*.ipk + + - name: Store logs + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.arch }}-logs + path: | + logs/ + PKG-INFO