Skip to content

Commit

Permalink
Adds Test Build GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
ogarcia committed Oct 4, 2024
1 parent 03a8b3c commit 2456c64
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/multi-arch-test-build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2456c64

Please sign in to comment.