Skip to content

Commit 6c80f56

Browse files
committed
build CI apps and pull regression data only
1 parent 85ea603 commit 6c80f56

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nvidia/cuda:12.8.0-cudnn-devel-ubuntu24.04
22
LABEL org.opencontainers.image.source=https://github.com/accel-sim/Dockerfile/
3-
LABEL org.opencontainers.image.description "Accel-Sim container with Ubuntu 24.04 with CUDA 12.8.0 and CUDNN 8.9.0, for CI runs only"
3+
LABEL org.opencontainers.image.description="Accel-Sim container with Ubuntu 24.04 with CUDA 12.8.0 and CUDNN 8.9.0, for CI runs only"
44

55
SHELL ["/bin/bash", "-c"]
66

@@ -26,5 +26,11 @@ ENV PATH="/venv/bin:$PATH"
2626
RUN pip3 install --upgrade pip
2727
RUN pip3 install pyyaml plotly psutil
2828

29+
# For CI, only build the CI apps and pull the regression data
2930
# Clone the gpu-app-collection repository
30-
RUN git clone --recurse-submodules https://github.com/accel-sim/gpu-app-collection.git
31+
RUN git clone --recurse-submodules https://github.com/accel-sim/gpu-app-collection.git
32+
RUN cd gpu-app-collection
33+
# Build CI apps
34+
RUN bash test-build.sh ci
35+
# Pull regression data
36+
RUN bash get_regression_data.sh

0 commit comments

Comments
 (0)