Skip to content

Commit ca5e456

Browse files
JRPanclaude
andcommitted
Change CI docker image to nvidia/cuda:13.1.1-cudnn-devel-ubuntu24.04
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e94df09 commit ca5e456

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/test-build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,18 @@ on:
1414
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515
jobs:
1616
test-12-8:
17+
env:
18+
CUDA_INSTALL_PATH: /usr/local/cuda
19+
BOOST_ROOT: /usr/include/boost
1720
runs-on: ubuntu-latest
1821
container:
19-
image: ghcr.io/accel-sim/accel-sim-framework:Ubuntu-24.04-cuda-12.8-minimal
22+
image: nvidia/cuda:13.1.1-cudnn-devel-ubuntu24.04
2023

2124
# Steps represent a sequence of tasks that will be executed as part of the job
2225
steps:
26+
- name: install dependencies
27+
run: |
28+
apt-get update && apt-get install -y git build-essential cmake libboost-all-dev wget
2329
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2430
- name: Checkout repository with submodules
2531
uses: actions/checkout@v4
@@ -36,5 +42,5 @@ jobs:
3642
- name: Print Successful Apps
3743
if: always()
3844
run: |
39-
echo "Built `ls bin/12.8/release | wc` Apps:"
40-
ls bin/12.8/release
45+
echo "Built $(ls bin/*/release | wc -l) Apps:"
46+
ls bin/*/release

0 commit comments

Comments
 (0)