Skip to content

Commit

Permalink
Test dockerfiles with build shared
Browse files Browse the repository at this point in the history
  • Loading branch information
chapman39 committed Aug 8, 2024
1 parent 8e8eb54 commit 00b89cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ RUN cp ./serac_repo/*.cmake /home/serac/export_hostconfig

# Make sure the new hostconfig worked
# Note: having high job slots causes build log to disappear and job to fail
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build && cd build && make -j4 VERBOSE=1 && make -j4 test && cd /home/serac && rm -rf serac_repo
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build -DBUILD_SHARED_LIBS=ON && cd build && make -j4 VERBOSE=1 && make -j4 test && cd /home/serac && rm -rf serac_repo
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile_clang-14
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ RUN cp ./serac_repo/*.cmake /home/serac/export_hostconfig

# Make sure the new hostconfig worked
# Note: having high job slots causes build log to disappear and job to fail
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build && cd build && make -j4 VERBOSE=1 && make -j4 test && cd /home/serac && rm -rf serac_repo
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build -DBUILD_SHARED_LIBS=ON && cd build && make -j4 VERBOSE=1 && make -j4 test && cd /home/serac && rm -rf serac_repo
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile_cuda-12
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ RUN cp ./serac_repo/*.cmake /home/serac/export_hostconfig

# Make sure the new hostconfig worked
# Note: having high job slots causes build log to disappear and job to fail
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build && cd build && make -j4 VERBOSE=1 && cd /home/serac && rm -rf serac_repo
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build -DBUILD_SHARED_LIBS=ON && cd build && make -j4 VERBOSE=1 && cd /home/serac && rm -rf serac_repo
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile_gcc-13
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ RUN cp ./serac_repo/*.cmake /home/serac/export_hostconfig

# Make sure the new hostconfig worked
# Note: having high job slots causes build log to disappear and job to fail
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build && cd build && make -j4 VERBOSE=1 && make -j4 test && cd /home/serac && rm -rf serac_repo
RUN cd serac_repo && python3 config-build.py -hc *.cmake -bp build -DBUILD_SHARED_LIBS=ON && cd build && make -j4 VERBOSE=1 && make -j4 test && cd /home/serac && rm -rf serac_repo

0 comments on commit 00b89cb

Please sign in to comment.