@@ -19,10 +19,17 @@ jobs:
19
19
CXX : ' clang++'
20
20
TYPE : Debug
21
21
steps :
22
+ - name : Check out preCICE
23
+ uses : actions/checkout@master
24
+ with :
25
+ name : precice/precice
26
+ # ref: refs/heads/release
22
27
- name : Generate build directory
23
- run : mkdir -p build
28
+ run : |
29
+ ls -lah
30
+ mkdir -p precice/build
24
31
- name : Configure
25
- working-directory : build
32
+ working-directory : precice/ build
26
33
env :
27
34
CXX : ${{ matrix.CXX }}
28
35
CXXFLAGS : " -Wall"
@@ -35,17 +42,17 @@ jobs:
35
42
if : failure()
36
43
with :
37
44
name : ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} CMakeCache
38
- path : build/CMakeCache.txt
45
+ path : precice/ build/CMakeCache.txt
39
46
- uses : actions/upload-artifact@v2
40
47
if : failure()
41
48
with :
42
49
name : ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} CMakeLogs
43
- path : ' build/CMakeFiles/*.log'
50
+ path : ' precice/ build/CMakeFiles/*.log'
44
51
- uses : actions/upload-artifact@v2
45
52
if : failure()
46
53
with :
47
54
name : ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} CompileCommands
48
- path : build/compile_commands.json
55
+ path : precice/ build/compile_commands.json
49
56
- name : Compile
50
57
working-directory : build
51
58
run : |
54
61
if : failure()
55
62
with :
56
63
name : ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} TestOutput
57
- path : build/TestOutput/
64
+ path : precice/ build/TestOutput/
58
65
- name : Install & upgrade pip3
59
66
run : python -m ensurepip --upgrade
60
67
- name : Run pip install
0 commit comments