Skip to content

Commit 193a4d4

Browse files
committed
try 11
1 parent f718a53 commit 193a4d4

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
strategy:
1818
matrix:
1919
build-type: [Debug, Release]
20-
enable-coverage: [false, true]
21-
exclude:
22-
- build-type: Debug
23-
enable-coverage: true
20+
#enable-coverage: [false, true]
21+
#exclude:
22+
# - build-type: Debug
23+
# enable-coverage: true
2424

2525
steps:
2626
- name: Checkout code
@@ -65,16 +65,17 @@ jobs:
6565
run: |
6666
bash contrib/install_yices2.sh
6767
68-
- name: Install coverage tools
69-
if: matrix.enable-coverage
70-
run: |
71-
pip3 install --user cpp-coveralls
68+
#- name: Install coverage tools
69+
# if: matrix.enable-coverage
70+
# run: |
71+
# pip3 install --user cpp-coveralls
7272

7373
- name: Configure and build
7474
run: |
7575
mkdir -p build
7676
cd build
77-
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DENABLE_COVERAGE=${{ matrix.enable-coverage }} ..
77+
#cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DENABLE_COVERAGE=${{ matrix.enable-coverage }} ..
78+
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ..
7879
make -j${{ env.CMAKE_BUILD_PARALLEL_LEVEL }}
7980
8081
# - name: Run tests
@@ -83,13 +84,13 @@ jobs:
8384
# make check
8485
# timeout-minutes: 30
8586

86-
- name: Upload coverage to Coveralls
87-
if: matrix.enable-coverage
88-
run: |
89-
cd build
90-
coveralls -r .. -b . --gcov-options '\-lp'
91-
env:
92-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
87+
#- name: Upload coverage to Coveralls
88+
# if: matrix.enable-coverage
89+
# run: |
90+
# cd build
91+
# coveralls -r .. -b . --gcov-options '\-lp'
92+
# env:
93+
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
9394

9495
- name: Show ccache statistics
9596
run: ccache -s

0 commit comments

Comments
 (0)