-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (35 loc) · 894 Bytes
/
openwrt.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: OpenWrt package build
on:
push:
workflow_dispatch:
jobs:
build-openwrt:
name: Build ${{ matrix.revision }} packages for ${{ matrix.arch }}
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
arch:
- x86_64
- arm_cortex-a7
- aarch64_generic
- mipsel_24kc
revision:
- SNAPSHOT
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
uses: openwrt/gh-action-sdk@main
env:
ARCH: ${{ matrix.arch }}-${{ matrix.revision }}
PACKAGES: mimic
V: s
- name: Store packages
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch }}-${{ matrix.revision }}
path: |
bin/packages/*/action/*.ipk
bin/targets/*/*/packages/kmod-mimic*.ipk