We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa66f7 commit b46299aCopy full SHA for b46299a
.github/workflows/ci.yml
@@ -15,5 +15,9 @@ jobs:
15
with:
16
submodules: recursive
17
fetch-depth: 0
18
- - name: Build agent
+ - name: Build
19
uses: docker/build-push-action@v5
20
+ - name: Unittest
21
+ uses: docker/build-push-action@v5
22
+ with:
23
+ target: unittest
Dockerfile
@@ -17,6 +17,10 @@ RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -qy clang libibverb
RUN cd reduction_server && cargo build -r
+FROM optcast AS unittest
+
+RUN cd reduction_server && cargo test --all
24
FROM nvcr.io/nvidia/cuda:12.3.1-devel-ubuntu20.04 AS final
25
26
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -qy --no-install-recommends openmpi-bin
0 commit comments