Skip to content

Commit cabfcd0

Browse files
committed
Run tests on windows and fix dockerfile
1 parent 6060160 commit cabfcd0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,5 @@ jobs:
6161
${{ matrix.shared.args }}
6262
run-build: true
6363
build-args: '--parallel 16'
64+
- uses: threeal/[email protected]
6465

Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,14 @@ RUN cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENM
4343
make -j 16 &&\
4444
ctest -T test --output-on-failure
4545

46-
## TODO: Fix compilation issue with OpenMP 5.1 atomic support
4746
FROM ghcr.io/llnl/radiuss:intel-2024.0-ubuntu-20.04 AS intel2024
4847
ENV GTEST_COLOR=1
4948
COPY . /home/raja/workspace
5049
WORKDIR /home/raja/workspace/build
5150
RUN /bin/bash -c "source /opt/intel/oneapi/setvars.sh 2>&1 > /dev/null && \
5251
cmake -DCMAKE_CXX_COMPILER=icpx -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENMP=On .. && \
53-
make -j 16" &&\
54-
ctest -T test --output-on-failure
52+
make -j 16 &&\
53+
ctest -T test --output-on-failure"
5554

5655
FROM ghcr.io/llnl/radiuss:ubuntu-22.04-cuda-12-3 AS cuda12.3_debug
5756
ENV GTEST_COLOR=1

0 commit comments

Comments
 (0)