Skip to content

Commit

Permalink
.github/workflows/testing.yml: upgrade build env from Focal to Noble
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Nov 10, 2024
1 parent 868bc27 commit f66b644
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ on:

jobs:

FocalAssets:
NobleAssets:
runs-on: ubuntu-latest
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' }
container: { image: 'ghcr.io/tim-janik/anklang-ci:noble-latest' }
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0, submodules: recursive } }
- name: 'Fetch all tags'
Expand All @@ -34,7 +34,7 @@ jobs:
UploadDocs:
if: ${{ github.repository == 'tim-janik/anklang' && github.ref == 'refs/heads/trunk' }}
runs-on: ubuntu-latest
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' }
container: { image: 'ghcr.io/tim-janik/anklang-ci:noble-latest' }
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0, submodules: recursive } }
- name: 'Fetch all tags'
Expand Down Expand Up @@ -76,10 +76,10 @@ jobs:
if: ${{ always() }}
with: { name: "x11test", path: "out/x11test/" }

FocalClangTidy:
NobleClangTidy:
if: ${{ ! contains(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' }
container: { image: 'ghcr.io/tim-janik/anklang-ci:noble-latest' }
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0, submodules: recursive } }
- name: 'Fetch all tags'
Expand All @@ -106,18 +106,18 @@ jobs:
make branch-check BRANCH_CHECK_EXIT=$BRANCH_CHECK_EXIT
Ping-IRC:
needs: [FocalAssets, UploadDocs, ArchReplay, FocalClangTidy]
needs: [NobleAssets, UploadDocs, ArchReplay, NobleClangTidy]
runs-on: ubuntu-latest
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0 } } # Fix actions/checkout#290
- run: git fetch -f --tags && git submodule update --init --recursive && git describe
- name: Check Jobs
run: |
echo '${{ needs.FocalAssets.result }}' '${{ needs.UploadDocs.result }}' '${{ needs.ArchReplay.result }}' '${{ needs.FocalClangTidy.result }}'
[[ ${{ needs.FocalAssets.result }} =~ success|skipped ]]
echo '${{ needs.NobleAssets.result }}' '${{ needs.UploadDocs.result }}' '${{ needs.ArchReplay.result }}' '${{ needs.NobleClangTidy.result }}'
[[ ${{ needs.NobleAssets.result }} =~ success|skipped ]]
[[ ${{ needs.UploadDocs.result }} =~ success|skipped ]]
[[ ${{ needs.ArchReplay.result }} =~ success|skipped ]]
[[ ${{ needs.FocalClangTidy.result }} =~ success|skipped ]]
[[ ${{ needs.NobleClangTidy.result }} =~ success|skipped ]]
- name: Ping IRC
if: ${{ always() && !env.ACT }}
run: |
Expand Down

0 comments on commit f66b644

Please sign in to comment.