File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ stages:
75
75
76
76
.build_toss_4_x86_64_ib_corona_script :
77
77
script :
78
- - srun -p pdebug -t 30 -N 1 scripts/gitlab/build_and_test.sh
78
+ - flux mini run --time-limit=30m --nodes= 1 scripts/gitlab/build_and_test.sh
79
79
80
80
# Lassen uses a different job scheduler (spectrum lsf) that does not
81
81
# allow pre-allocation the same way slurm does.
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ FROM ghcr.io/rse-ops/clang-ubuntu-20.04:llvm-11.0.0 AS clang11
41
41
ENV GTEST_COLOR=1
42
42
COPY . /home/raja/workspace
43
43
WORKDIR /home/raja/workspace/build
44
- RUN . /opt/spack/share/spack/setup-env.sh && spack load llvm && \
44
+ RUN . /opt/spack/share/spack/setup-env.sh && export LD_LIBRARY_PATH=/opt/view/lib:$LD_LIBRARY_PATH && \
45
45
cmake -DCMAKE_CXX_COMPILER=clang++ -DRAJA_ENABLE_TBB=On -DENABLE_OPENMP=On .. && \
46
46
make -j 6 &&\
47
47
ctest -T test --output-on-failure
@@ -50,7 +50,7 @@ FROM ghcr.io/rse-ops/clang-ubuntu-20.04:llvm-11.0.0 AS clang11-debug
50
50
ENV GTEST_COLOR=1
51
51
COPY . /home/raja/workspace
52
52
WORKDIR /home/raja/workspace/build
53
- RUN . /opt/spack/share/spack/setup-env.sh && spack load llvm && \
53
+ RUN . /opt/spack/share/spack/setup-env.sh && export LD_LIBRARY_PATH=/opt/view/lib:$LD_LIBRARY_PATH && \
54
54
cmake -DCMAKE_CXX_COMPILER=clang++ -DENABLE_OPENMP=On -DCMAKE_BUILD_TYPE=Debug .. && \
55
55
make -j 6 &&\
56
56
ctest -T test --output-on-failure
@@ -59,7 +59,7 @@ FROM ghcr.io/rse-ops/clang-ubuntu-22.04:llvm-13.0.0 AS clang13
59
59
ENV GTEST_COLOR=1
60
60
COPY . /home/raja/workspace
61
61
WORKDIR /home/raja/workspace/build
62
- RUN . /opt/spack/share/spack/setup-env.sh && spack load llvm && \
62
+ RUN . /opt/spack/share/spack/setup-env.sh && export LD_LIBRARY_PATH=/opt/view/lib:$LD_LIBRARY_PATH && \
63
63
cmake -DCMAKE_CXX_COMPILER=clang++ -DENABLE_OPENMP=On -DCMAKE_BUILD_TYPE=Release .. && \
64
64
make -j 6 &&\
65
65
ctest -T test --output-on-failure
You can’t perform that action at this time.
0 commit comments