Skip to content

Commit 6e562fc

Browse files
committedDec 18, 2020
patch 8.2.2158: CI on cirrus times out, coveralls doesn't always run
Problem: CI on cirrus times out, coveralls doesn't always run. Solution: Set timeout to 20 minutes. Adjust condition. (closes vim#7493)
1 parent 9aed729 commit 6e562fc

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed
 

‎.cirrus.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ env:
33
FEATURES: huge
44

55
freebsd_12_task:
6+
only_if: $CIRRUS_TAG == ''
7+
timeout_in: 20m
68
freebsd_instance:
79
image: freebsd-12-1-release-amd64
810
install_script:

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ jobs:
231231
runs-on: ubuntu-latest
232232

233233
needs: linux
234-
if: github.event_name != 'pull_request'
234+
if: always() && github.event_name != 'pull_request'
235235

236236
steps:
237237
- name: Parallel finished

‎src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2158,
753755
/**/
754756
2157,
755757
/**/

0 commit comments

Comments
 (0)
Please sign in to comment.