Skip to content

Commit 21f26e0

Browse files
committed
another attempt
1 parent 4e0e7cf commit 21f26e0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v2
1616

17-
- name: Set up C++ environment
17+
- name: Install dependencies
1818
run: |
1919
sudo apt-get update
2020
sudo apt-get install -y build-essential cmake
@@ -25,8 +25,15 @@ jobs:
2525
cd build
2626
cmake ..
2727
make
28+
continue-on-error: true
2829

2930
- name: Run tests
3031
run: |
3132
cd build
3233
ctest
34+
continue-on-error: true
35+
36+
- name: Show build logs
37+
if: failure()
38+
run: |
39+
cat $(find build -type f -name '*.log')

0 commit comments

Comments
 (0)