From 6751351587132e4c1d7f9d4271ff13ad881fcda0 Mon Sep 17 00:00:00 2001 From: David Bauer Date: Sat, 3 Jul 2021 02:37:42 +0200 Subject: [PATCH] actions: refresh GitHub actions --- .github/workflows/build-gluon.yml | 2 +- .github/workflows/build-gluon.yml.orig | 58 ++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/build-gluon.yml.orig diff --git a/.github/workflows/build-gluon.yml b/.github/workflows/build-gluon.yml index 904612b6..6aab7238 100644 --- a/.github/workflows/build-gluon.yml +++ b/.github/workflows/build-gluon.yml @@ -32,7 +32,7 @@ jobs: strategy: fail-fast: false matrix: - target: [ath79-generic, ath79-nand, bcm27xx-bcm2708, bcm27xx-bcm2709, ipq40xx-generic, ipq806x-generic, lantiq-xrx200, lantiq-xway, mediatek-mt7622, mpc85xx-p1010, mpc85xx-p1020, ramips-mt7620, ramips-mt7621, ramips-mt76x8, ramips-rt305x, rockchip-armv8, sunxi-cortexa7, x86-generic, x86-geode, x86-legacy, x86-64, bcm27xx-bcm2710, mvebu-cortexa9] + target: [ath79-generic, ath79-nand, bcm27xx-bcm2708, bcm27xx-bcm2709, ipq40xx-generic, ipq806x-generic, lantiq-xrx200, lantiq-xway, mediatek-mt7622, mpc85xx-p1020, ramips-mt7620, ramips-mt7621, ramips-mt76x8, ramips-rt305x, rockchip-armv8, sunxi-cortexa7, x86-generic, x86-geode, x86-legacy, x86-64, bcm27xx-bcm2710, bcm27xx-bcm2711, mvebu-cortexa9] runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/build-gluon.yml.orig b/.github/workflows/build-gluon.yml.orig new file mode 100644 index 00000000..70b08863 --- /dev/null +++ b/.github/workflows/build-gluon.yml.orig @@ -0,0 +1,58 @@ + +# Update this file after adding/removing/renaming a target by running +# `make list-targets BROKEN=1 | ./contrib/actions/generate-actions.py > ./.github/workflows/build-gluon.yml` + +name: Build Gluon +on: + push: + branches: + - master + - next* + - v20* + paths: + - "modules" + - "Makefile" + - "scripts/**" + - "package/**" + - "patches/**" + - "targets/**" + - ".github/workflows/build-gluon.yml" + pull_request: + types: [opened, synchronize, reopened] + paths: + - "modules" + - "Makefile" + - "scripts/**" + - "package/**" + - "patches/**" + - "targets/**" + - ".github/workflows/build-gluon.yml" +jobs: + build_firmware: + strategy: + fail-fast: false + matrix: +<<<<<<< HEAD + target: [ath79-generic, ath79-nand, bcm27xx-bcm2708, bcm27xx-bcm2709, ipq40xx-generic, ipq806x-generic, lantiq-xrx200, lantiq-xway, mediatek-mt7622, mpc85xx-p1010, mpc85xx-p1020, ramips-mt7620, ramips-mt7621, ramips-mt76x8, ramips-rt305x, rockchip-armv8, sunxi-cortexa7, x86-generic, x86-geode, x86-legacy, x86-64, bcm27xx-bcm2710, mvebu-cortexa9] +======= + target: [ath79-generic, ath79-nand, bcm27xx-bcm2708, bcm27xx-bcm2709, ipq40xx-generic, ipq806x-generic, lantiq-xrx200, lantiq-xway, mediatek-mt7622, mpc85xx-p1020, ramips-mt7620, ramips-mt7621, ramips-mt76x8, ramips-rt305x, rockchip-armv8, sunxi-cortexa7, x86-generic, x86-geode, x86-legacy, x86-64, bcm27xx-bcm2710, bcm27xx-bcm2711, mvebu-cortexa9] +>>>>>>> b705f531 (actions: refresh actions) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Install Dependencies + run: sudo contrib/actions/install-dependencies.sh + - name: Build + run: contrib/actions/run-build.sh ${{ matrix.target }} + - name: Archive build logs + if: ${{ !cancelled() }} + uses: actions/upload-artifact@v1 + with: + name: ${{ matrix.target }}_logs + path: openwrt/logs + - name: Archive build output + uses: actions/upload-artifact@v1 + with: + name: ${{ matrix.target }}_output + path: output +