File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : GitHub CI
22
3- on : [push, pull_request]
3+ on :
4+ push :
5+ branches : ['**']
6+ pull_request :
47
58jobs :
69 linux :
@@ -197,7 +200,7 @@ jobs:
197200 do_test make ${SHADOWOPT} ${TEST}
198201
199202 - name : Coveralls
200- if : matrix.coverage && success()
203+ if : matrix.coverage && success() && github.event_name != 'pull_request'
201204 env :
202205 COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
203206 COVERALLS_PARALLEL : true
@@ -210,8 +213,11 @@ jobs:
210213
211214 - name : Codecov
212215 if : matrix.coverage && success()
213- run : |
214- cd "${SRCDIR}" && bash <(curl -s https://codecov.io/bash)
216+ uses : codecov/codecov-action@v1
217+ with :
218+ flags : ${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }}
219+ fail_ci_if_error : true
220+ working-directory : ${{ env.SRCDIR }}
215221
216222 - name : ASan logs
217223 if : contains(matrix.extra, 'asan') && !cancelled()
@@ -225,7 +231,7 @@ jobs:
225231 runs-on : ubuntu-latest
226232
227233 needs : linux
228- if : always()
234+ if : github.event_name != 'pull_request'
229235
230236 steps :
231237 - name : Parallel finished
Original file line number Diff line number Diff line change 3131 steps :
3232 - name : Checkout repository
3333 uses : actions/checkout@v2
34- with :
35- # We must fetch at least the immediate parents so that if this is
36- # a pull request then we can checkout the head.
37- fetch-depth : 2
3834
3935 # Initializes the CodeQL tools for scanning.
4036 - name : Initialize CodeQL
Original file line number Diff line number Diff line change @@ -750,6 +750,8 @@ static char *(features[]) =
750750
751751static int included_patches [] =
752752{ /* Add new patch number below this line */
753+ /**/
754+ 2156 ,
753755/**/
754756 2155 ,
755757/**/
You can’t perform that action at this time.
0 commit comments