File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ stages:
7575
7676.build_toss_4_x86_64_ib_corona_script :
7777 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
7979
8080# Lassen uses a different job scheduler (spectrum lsf) that does not
8181# 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
4141ENV GTEST_COLOR=1
4242COPY . /home/raja/workspace
4343WORKDIR /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 && \
4545 cmake -DCMAKE_CXX_COMPILER=clang++ -DRAJA_ENABLE_TBB=On -DENABLE_OPENMP=On .. && \
4646 make -j 6 &&\
4747 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
5050ENV GTEST_COLOR=1
5151COPY . /home/raja/workspace
5252WORKDIR /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 && \
5454 cmake -DCMAKE_CXX_COMPILER=clang++ -DENABLE_OPENMP=On -DCMAKE_BUILD_TYPE=Debug .. && \
5555 make -j 6 &&\
5656 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
5959ENV GTEST_COLOR=1
6060COPY . /home/raja/workspace
6161WORKDIR /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 && \
6363 cmake -DCMAKE_CXX_COMPILER=clang++ -DENABLE_OPENMP=On -DCMAKE_BUILD_TYPE=Release .. && \
6464 make -j 6 &&\
6565 ctest -T test --output-on-failure
You can’t perform that action at this time.
0 commit comments