Skip to content

Commit

Permalink
Revert "Use ubuntu-latest"
Browse files Browse the repository at this point in the history
This reverts commit 5ac342c.

It seems they haven't switched to 24.04 yet:
actions/runner-images#10636
Leave it as-is for now and we can revisit this if needed.

Signed-off-by: Nick Kossifidis <[email protected]>
  • Loading branch information
mickflemm committed Nov 9, 2024
1 parent 37d2c54 commit 00efc94
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
needs: [submodule_cache]
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04, ubuntu-24.04]
mode: [newlib, linux, musl, uclibc]
target: [rv32gc-ilp32d, rv64gc-lp64d]
compiler: [gcc, llvm]
Expand Down Expand Up @@ -98,7 +98,8 @@ jobs:
- name: make report
if: |
(matrix.mode == 'linux' || matrix.mode == 'newlib')
matrix.os == 'ubuntu-24.04'
&& (matrix.mode == 'linux' || matrix.mode == 'newlib')
&& matrix.compiler == 'gcc'
run: |
make report-${{ matrix.mode }} -j $(nproc)
Expand Down Expand Up @@ -135,7 +136,7 @@ jobs:
needs: [submodule_cache]
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-24.04]
mode: [newlib]
target: [rv64gc-lp64d]
sim: [spike]
Expand Down Expand Up @@ -171,7 +172,7 @@ jobs:
needs: [submodule_cache]
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-24.04]
mode: [newlib, linux]
target: [rv64gc-lp64d]
steps:
Expand Down

0 comments on commit 00efc94

Please sign in to comment.