Skip to content

Commit

Permalink
Try moving ubuntu CI image to older version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrood-nrel committed Dec 9, 2024
1 parent 54942ab commit 9cba90c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
Formatting:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand All @@ -26,7 +26,7 @@ jobs:
clangFormatVersion: 18
CPU-GNUmake:
needs: Formatting
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-24.04, macos-latest]
os: [ubuntu-latest, macos-latest]
build_type: [Release, Debug]
enable_eb: [EB-OFF, EB-ON]
include:
Expand All @@ -93,7 +93,7 @@ jobs:
comp: llvm
procs: $(sysctl -n hw.ncpu)
ccache_cache: /Users/runner/Library/Caches/ccache
- os: ubuntu-24.04
- os: ubuntu-latest
install_deps: sudo apt-get update && sudo apt-get install mpich libmpich-dev
comp: gnu
procs: $(nproc)
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
GPU-Nvidia:
name: GPU-CUDA
needs: [Formatting, CPU-GNUmake]
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
GPU-AMD:
name: GPU-HIP
needs: [Formatting, CPU-GNUmake]
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
GPU-Intel:
name: GPU-SYCL
needs: [Formatting, CPU-GNUmake]
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
du -hs ~/.cache/ccache
Lint-clang-tidy:
needs: Formatting
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
strategy:
matrix:
enable_eb: [EB-OFF, EB-ON]
Expand Down Expand Up @@ -479,7 +479,7 @@ jobs:
exit ${return}
Lint-codeql:
needs: Formatting
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
sarif_file: sarif-results/cpp.sarif
Lint-codespell:
needs: Formatting
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
Expand All @@ -545,7 +545,7 @@ jobs:
run: codespell
Save-PR-Number:
if: github.event_name == 'pull_request'
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Save PR number
env:
Expand Down

0 comments on commit 9cba90c

Please sign in to comment.