-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows/testing.yml: upgrade build env from Focal to Noble
Signed-off-by: Tim Janik <[email protected]>
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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: | | ||
|