Skip to content

Commit f4fc64e

Browse files
committed
Checkout preCICE
1 parent 122d853 commit f4fc64e

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/build-and-test-macos.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,17 @@ jobs:
1919
CXX: 'clang++'
2020
TYPE: Debug
2121
steps:
22+
- name: Check out preCICE
23+
uses: actions/checkout@master
24+
with:
25+
name: precice/precice
26+
#ref: refs/heads/release
2227
- name: Generate build directory
23-
run: mkdir -p build
28+
run: |
29+
ls -lah
30+
mkdir -p precice/build
2431
- name: Configure
25-
working-directory: build
32+
working-directory: precice/build
2633
env:
2734
CXX: ${{ matrix.CXX }}
2835
CXXFLAGS: "-Wall"
@@ -35,17 +42,17 @@ jobs:
3542
if: failure()
3643
with:
3744
name: ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} CMakeCache
38-
path: build/CMakeCache.txt
45+
path: precice/build/CMakeCache.txt
3946
- uses: actions/upload-artifact@v2
4047
if: failure()
4148
with:
4249
name: ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} CMakeLogs
43-
path: 'build/CMakeFiles/*.log'
50+
path: 'precice/build/CMakeFiles/*.log'
4451
- uses: actions/upload-artifact@v2
4552
if: failure()
4653
with:
4754
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
4956
- name: Compile
5057
working-directory: build
5158
run: |
@@ -54,7 +61,7 @@ jobs:
5461
if: failure()
5562
with:
5663
name: ${{ format('{0} {1} {2}', matrix.CXX, matrix.CONFIG, matrix.TYPE) }} TestOutput
57-
path: build/TestOutput/
64+
path: precice/build/TestOutput/
5865
- name: Install & upgrade pip3
5966
run: python -m ensurepip --upgrade
6067
- name: Run pip install

0 commit comments

Comments
 (0)