Skip to content

Commit

Permalink
github: add build CI
Browse files Browse the repository at this point in the history
  • Loading branch information
blocktrron committed Jul 23, 2024
1 parent 15edaa1 commit bcd11e7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build package
on: [ push, pull_request]
jobs:
build:
name: ${{ matrix.arch }} ${{ matrix.release }} build
runs-on: ubuntu-24.04
strategy:
matrix:
arch:
- mips_24kc
release:
- '23.05.2'
- '23.05.3'
- '23.05.4'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build
uses: openwrt/gh-action-sdk@v7
env:
ARCH: ${{ matrix.arch }}-${{ matrix.release }}
FEEDNAME: packages_ci
PACKAGES: "ffda-oob-state-reporter"
V: s
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch}}-${{ matrix.release }}-packages
path: bin/packages/${{ matrix.arch }}/packages_ci/*.ipk

0 comments on commit bcd11e7

Please sign in to comment.