diff options
author | Petr Štetiar <ynezz@true.cz> | 2023-05-26 16:33:08 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2023-05-26 19:42:36 +0200 |
commit | ed543d8bf481a5a3da6aafe35213dbcafb842c00 (patch) | |
tree | 79b82e6444e4ca03ea7116a846d4872f07d52cc5 /.github | |
parent | 86107a647cb0a7f37c04dd7ab0cd79f547fafaf7 (diff) |
ci: update the workflows
* use mediatek/mt7622 SDK to have arm64 build test coverage
* use latest Ubuntu container to stay current
* use v3 of checkout action to stay current
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/debian.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/openwrt-ci-master.yml | 10 | ||||
-rw-r--r-- | .github/workflows/openwrt-ci-pull-request.yml | 10 |
4 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 1e6be40..52c6f9e 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: path: ucode/ diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 81502d2..6632b48 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -8,7 +8,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup run: | diff --git a/.github/workflows/openwrt-ci-master.yml b/.github/workflows/openwrt-ci-master.yml index df38774..a342e10 100644 --- a/.github/workflows/openwrt-ci-master.yml +++ b/.github/workflows/openwrt-ci-master.yml @@ -16,10 +16,10 @@ env: jobs: native_testing: name: Various native checks - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ynezz/gh-actions-openwrt-ci-native@v0.0.2 @@ -35,7 +35,7 @@ jobs: sdk_build: name: Build with OpenWrt ${{ matrix.sdk_platform }} SDK (out of tree) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: fail-fast: false @@ -44,10 +44,10 @@ jobs: - ath79-generic - imx-cortexa9 - malta-be - - mvebu-cortexa53 + - mediatek-mt7622 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Out of tree build with OpenWrt ${{ matrix.sdk_platform }} SDK uses: ynezz/gh-actions-openwrt-ci-sdk@v0.0.2 diff --git a/.github/workflows/openwrt-ci-pull-request.yml b/.github/workflows/openwrt-ci-pull-request.yml index 87cb82a..d33d11a 100644 --- a/.github/workflows/openwrt-ci-pull-request.yml +++ b/.github/workflows/openwrt-ci-pull-request.yml @@ -17,10 +17,10 @@ concurrency: jobs: native_testing: name: Various native checks - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ynezz/gh-actions-openwrt-ci-native@v0.0.2 env: @@ -39,7 +39,7 @@ jobs: sdk_build: name: Build with OpenWrt ${{ matrix.sdk_platform }} SDK (out of tree) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: fail-fast: false @@ -48,10 +48,10 @@ jobs: - ath79-generic - imx-cortexa9 - malta-be - - mvebu-cortexa53 + - mediatek-mt7622 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Out of tree build with OpenWrt ${{ matrix.sdk_platform }} SDK uses: ynezz/gh-actions-openwrt-ci-sdk@v0.0.2 |