Skip to content

Commit

Permalink
replace make check with check-long
Browse files Browse the repository at this point in the history
  • Loading branch information
iamashwin99 committed Nov 21, 2022
1 parent 1c2ab34 commit 64ba6c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Docker-dev-build
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ RUN apt-get install -y --no-install-recommends \
python \
unzip \
vim \
wget \
&& rm -rf /var/lib/apt/lists/*

# load spack environment on login
Expand Down Expand Up @@ -69,6 +70,7 @@ RUN . $SPACK_ROOT/share/spack/setup-env.sh && \
spack env activate octopus-serial && \
# make a dev-build direcotry for the serial version:
mkdir ~/dev-build-serial && cd ~/dev-build-serial && \

wget https://octopus-code.org/down.php?file=12.1/octopus-12.1.tar.gz -O octopus-12.1.tar.gz &&\
tar --strip-components=1 -xf octopus-12.1.tar.gz -C ./&& \
# install the serial version of octopus:
Expand All @@ -85,7 +87,7 @@ RUN . $SPACK_ROOT/share/spack/setup-env.sh && \
# Run make checks
cd ~/dev-build-serial ; \
make check-short || /bin/true ; \
make check || /bin/true ; \
make check-long || /bin/true ; \
# deactivate the environment.
spack env deactivate

Expand All @@ -112,7 +114,7 @@ RUN . $SPACK_ROOT/share/spack/setup-env.sh && \
# Run make checks
cd ~/dev-build-parallel ; \
make check-short || /bin/true ; \
make check || /bin/true ; \
make check-long || /bin/true ; \
# deactivate the environment.
spack env deactivate

Expand Down

0 comments on commit 64ba6c1

Please sign in to comment.