mirror of
https://github.com/Slava-Shchipunov/awg-openwrt.git
synced 2026-03-14 01:13:09 +00:00
test workflow
This commit is contained in:
26
.github/workflows/build.yml
vendored
Normal file
26
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: Build Package Manually
|
||||
on: [workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: "${{ matrix.tag }} - ${{ matrix.build_env.pkgarch}} :: ${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}} build"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
tag: ['v23.05.0']
|
||||
build_env:
|
||||
- pkgarch: mipsel_24kc
|
||||
target: ramips
|
||||
subtarget: mt7621
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
repository: openwrt/openwrt
|
||||
ref: ${{ matrix.tag }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Validate checked out repository
|
||||
run: |
|
||||
ls -al
|
||||
git branch -v
|
||||
|
||||
Reference in New Issue
Block a user