We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e65e4ee + a1be92c commit 5ae6985Copy full SHA for 5ae6985
.github/workflows/SampleFlow-test.yml
@@ -28,11 +28,18 @@ jobs:
28
make install
29
popd
30
- name: cmake
31
- run: cmake -DEIGEN_DIR="$HOME/eigen-install" -DCMAKE_BUILD_TYPE=Debug .
+ run: |
32
+ mkdir build-gcc
33
+ cd build-gcc
34
+ cmake -DEIGEN_DIR="$HOME/eigen-install" -DCMAKE_BUILD_TYPE=Debug ..
35
- name: ctest
- run: ctest --output-on-failure -j2
36
37
38
+ ctest --output-on-failure -j2
39
- name: doc
- run: make doc
40
41
42
+ make doc
43
- name: style
44
run: |
45
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