@@ -17,10 +17,10 @@ jobs:
17
17
strategy :
18
18
matrix :
19
19
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
24
24
25
25
steps :
26
26
- name : Checkout code
@@ -65,16 +65,17 @@ jobs:
65
65
run : |
66
66
bash contrib/install_yices2.sh
67
67
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
72
72
73
73
- name : Configure and build
74
74
run : |
75
75
mkdir -p build
76
76
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 }} ..
78
79
make -j${{ env.CMAKE_BUILD_PARALLEL_LEVEL }}
79
80
80
81
# - name: Run tests
@@ -83,13 +84,13 @@ jobs:
83
84
# make check
84
85
# timeout-minutes: 30
85
86
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 }}
93
94
94
95
- name : Show ccache statistics
95
96
run : ccache -s
0 commit comments