We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce5cdb2 commit bf0153aCopy full SHA for bf0153a
2 files changed
build/Dockerfile
@@ -17,6 +17,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y \
17
python3-mpi4py \
18
swig \
19
libopenmpi-dev \
20
+ libopenblas-dev \
21
openmpi-bin \
22
ccache \
23
&& rm -rf /var/lib/apt/lists/* \
test/runTests.sh
@@ -90,6 +90,7 @@ else
90
cp -r src/SU2/TestCases tests/.
91
fi
92
if [ ! -z "$testbranch" ]; then
93
+ rm -r ./TestData
94
git clone --depth=1 -b $testbranch https://github.com/su2code/TestCases.git ./TestData
95
else
96
if [ ! -d "src/TestData" ]; then
@@ -99,6 +100,7 @@ else
99
100
101
cp -R ./TestData/* tests/TestCases/
102
if [ ! -z "$tutorialbranch" ]; then
103
+ rm -r ./Tutorials
104
git clone --depth=1 -b $tutorialbranch https://github.com/su2code/Tutorials ./Tutorials
105
106
if [ ! -d "src/Tutorials" ]; then
0 commit comments