2525jobs :
2626 linux_ubuntu :
2727 runs-on : ubuntu-latest
28- container : ghcr.io/acts-project/ubuntu2404:83
28+ container : ghcr.io/acts-project/ubuntu2404:85
2929 env :
3030 INSTALL_DIR : ${{ github.workspace }}/install
3131 ACTS_LOG_FAILURE_THRESHOLD : WARNING
@@ -78,10 +78,14 @@ jobs:
7878 key : ${{ steps.ccache-restore.outputs.cache-primary-key }}
7979
8080 - name : Unit tests
81- run : ctest --test-dir build -j$(nproc)
81+ run : >
82+ CI/dependencies/run.sh .env
83+ ctest --test-dir build -j$(nproc)
8284
8385 - name : Integration tests
84- run : cmake --build build --target integrationtests
86+ run : >
87+ CI/dependencies/run.sh .env
88+ cmake --build build --target integrationtests
8589
8690 - name : Install
8791 run : cmake --build build --target install
@@ -118,7 +122,7 @@ jobs:
118122
119123 linux_examples_test :
120124 runs-on : ubuntu-latest
121- container : ghcr.io/acts-project/ubuntu2404:83
125+ container : ghcr.io/acts-project/ubuntu2404:85
122126 needs : [linux_ubuntu]
123127 env :
124128 ACTS_SEQUENCER_FAIL_ON_UNMASKED_FPE : 0
@@ -157,7 +161,7 @@ jobs:
157161
158162 linux_physmon :
159163 runs-on : ubuntu-latest
160- container : ghcr.io/acts-project/ubuntu2404:83
164+ container : ghcr.io/acts-project/ubuntu2404:85
161165 needs : [linux_ubuntu]
162166
163167 steps :
@@ -234,10 +238,10 @@ jobs:
234238 strategy :
235239 matrix :
236240 include :
237- - image : ubuntu2404_clang19
238- std : 20
239- cxx : clang++-19
240- container : ghcr.io/acts-project/${{ matrix.image }}:83
241+ - image : ubuntu2404_clang22
242+ std : 23
243+ cxx : clang++-22
244+ container : ghcr.io/acts-project/${{ matrix.image }}:85
241245 env :
242246 INSTALL_DIR : ${{ github.workspace }}/install
243247 ACTS_LOG_FAILURE_THRESHOLD : WARNING
@@ -251,6 +255,7 @@ jobs:
251255 uses : ./.github/actions/dependencies
252256 with :
253257 compiler : ${{ matrix.cxx }}
258+ cxx_std : ${{ matrix.std }}
254259 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
255260 env_file : .env
256261
@@ -287,10 +292,14 @@ jobs:
287292 key : ${{ steps.ccache-restore.outputs.cache-primary-key }}
288293
289294 - name : Unit tests
290- run : cmake --build build --target test
295+ run : >
296+ CI/dependencies/run.sh .env
297+ cmake --build build --target test
291298
292299 - name : Integration tests
293- run : cmake --build build --target integrationtests
300+ run : >
301+ CI/dependencies/run.sh .env
302+ cmake --build build --target integrationtests
294303
295304 - name : Install
296305 run : cmake --build build --target install
@@ -313,7 +322,7 @@ jobs:
313322 run : ./build-downstream/bin/ShowActsVersion
314323
315324 macos :
316- runs-on : macos-15
325+ runs-on : macos-26
317326 env :
318327 INSTALL_DIR : ${{ github.workspace }}/install_acts
319328 ACTS_LOG_FAILURE_THRESHOLD : WARNING
@@ -326,7 +335,7 @@ jobs:
326335 - name : Setup Xcode version
327336 uses : maxim-lobanov/setup-xcode@v1
328337 with :
329- xcode-version : " 16 .3.0"
338+ xcode-version : " 26 .3.0"
330339
331340 - name : Install dependencies
332341 uses : ./.github/actions/dependencies
@@ -580,7 +589,7 @@ jobs:
580589 linux_ubuntu_python_wheel :
581590 runs-on : ubuntu-latest
582591 needs : [linux_ubuntu]
583- container : ghcr.io/acts-project/ubuntu2404:83
592+ container : ghcr.io/acts-project/ubuntu2404:85
584593
585594 steps :
586595 - uses : actions/checkout@v6
0 commit comments