gluon-ci/.gitea/workflows/test.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2023-05-18 14:19:49 +00:00
name: Build Gluon
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build_firmware:
needs: changed
strategy:
fail-fast: false
matrix:
# Read back changd targets to create build matrix
target: ath79-generic
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-05-18 14:37:38 +00:00
with:
submodules: recursive
2023-05-18 14:19:49 +00:00
2023-05-18 14:45:22 +00:00
- name: Install missing PUB Key
run: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
2023-05-18 14:33:50 +00:00
2023-05-18 14:48:57 +00:00
- name: Update APT Repos
run: apt-get -y update
- name: Install dependencies
run: apt-get -y install git subversion build-essential python3 gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time qemu-utils
2023-05-18 14:19:49 +00:00
- name: Build
2023-05-18 14:41:41 +00:00
run: contrib/actions/run-build.sh ${{ matrix.target }}
working-directory: gluon
2023-05-18 14:19:49 +00:00
- name: Archive build logs
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}_logs
path: openwrt/logs
- name: Archive build output
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}_output
path: output