Skip to content

Commit

Permalink
Remove Catch from Build Image (#159)
Browse files Browse the repository at this point in the history
* update catch2 version

* just remove catch
  • Loading branch information
jwaldrop107 authored Sep 11, 2024
1 parent fc92320 commit 51c08dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nwx_build_environment/add_catch2.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nwx_buildenv:latest

ARG VERSION=2.13.8
ARG VERSION=3.6.0
ARG COMPILER=gcc-11

# Install catch2 ##
Expand Down
2 changes: 1 addition & 1 deletion nwx_build_environment/buildenv.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
docker build -t nwx_buildenv -f nwx_buildenv.dockerfile .

# Build dependencies with both GCC and Clang
deps=("cereal" "gauxc" "libfort" "catch2" "spdlog")
deps=("cereal" "gauxc" "libfort" "spdlog")
for dep in "${deps[@]}"
do
docker build -t nwx_buildenv -f add_${dep}.dockerfile --build-arg COMPILER=gcc-11 .
Expand Down

0 comments on commit 51c08dc

Please sign in to comment.