Skip to content

Commit 5ae6985

Browse files
authored
Merge pull request #244 from bangerth/workflow
Use subdirectories.
2 parents e65e4ee + a1be92c commit 5ae6985

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/SampleFlow-test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,18 @@ jobs:
2828
make install
2929
popd
3030
- name: cmake
31-
run: cmake -DEIGEN_DIR="$HOME/eigen-install" -DCMAKE_BUILD_TYPE=Debug .
31+
run: |
32+
mkdir build-gcc
33+
cd build-gcc
34+
cmake -DEIGEN_DIR="$HOME/eigen-install" -DCMAKE_BUILD_TYPE=Debug ..
3235
- name: ctest
33-
run: ctest --output-on-failure -j2
36+
run: |
37+
cd build-gcc
38+
ctest --output-on-failure -j2
3439
- name: doc
35-
run: make doc
40+
run: |
41+
cd build-gcc
42+
make doc
3643
- name: style
3744
run: |
3845
wget -O astyle_2.04_linux.tar.gz https://sourceforge.net/projects/astyle/files/astyle/astyle%202.04/astyle_2.04_linux.tar.gz/download

0 commit comments

Comments
 (0)