You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- CACHE_ERR_MSG="Error! Initial build successful, but not enough time remains to run later build stages and tests. Please manually re-run this job by using the travis restart button or asking a bitcoin maintainer to restart. The next run should not time out because the build cache has been saved."
58
58
before_install:
59
-
- set -o errexit; source .travis/test_03_before_install.sh
59
+
- set -o errexit; source ./ci/test/03_before_install.sh
60
60
install:
61
-
- set -o errexit; source .travis/test_04_install.sh
61
+
- set -o errexit; source ./ci/test/04_install.sh
62
62
before_script:
63
-
- set -o errexit; source .travis/test_05_before_script.sh
63
+
- set -o errexit; source ./ci/test/05_before_script.sh
64
64
script:
65
65
- export CONTINUE=1
66
66
- if [ $SECONDS -gt 1200 ]; then export CONTINUE=0; fi # Likely the depends build took very long
67
67
- if [ $TRAVIS_REPO_SLUG = "bitcoin/bitcoin" ]; then export CONTINUE=1; fi # Whitelisted repo (90 minutes build time)
68
-
- if [ $CONTINUE = "1" ]; then set -o errexit; source .travis/test_06_script_a.sh; else set +o errexit; echo "$CACHE_ERR_MSG"; false; fi
68
+
- if [ $CONTINUE = "1" ]; then set -o errexit; source ./ci/test/06_script_a.sh; else set +o errexit; echo "$CACHE_ERR_MSG"; false; fi
69
69
- if [ $SECONDS -gt 2000 ]; then export CONTINUE=0; fi # Likely the build took very long; The tests take about 1000s, so we should abort if we have less than 50*60-1000=2000s left
70
70
- if [ $TRAVIS_REPO_SLUG = "bitcoin/bitcoin" ]; then export CONTINUE=1; fi # Whitelisted repo (90 minutes build time)
71
-
- if [ $CONTINUE = "1" ]; then set -o errexit; source .travis/test_06_script_b.sh; else set +o errexit; echo "$CACHE_ERR_MSG"; false; fi
71
+
- if [ $CONTINUE = "1" ]; then set -o errexit; source ./ci/test/06_script_b.sh; else set +o errexit; echo "$CACHE_ERR_MSG"; false; fi
72
72
after_script:
73
73
- echo $TRAVIS_COMMIT_RANGE
74
74
- echo $TRAVIS_COMMIT_LOG
@@ -82,11 +82,11 @@ jobs:
82
82
language: python
83
83
python: '3.5'# Oldest supported version according to doc/dependencies.md
84
84
install:
85
-
- set -o errexit; source .travis/lint_04_install.sh
85
+
- set -o errexit; source ./ci/lint/04_install.sh
86
86
before_script:
87
-
- set -o errexit; source .travis/lint_05_before_script.sh
87
+
- set -o errexit; source ./ci/lint/05_before_script.sh
88
88
script:
89
-
- set -o errexit; source .travis/lint_06_script.sh
89
+
- set -o errexit; source ./ci/lint/06_script.sh
90
90
91
91
- stage: extended-lint
92
92
name: 'extended lint [runtime >= 60 seconds]'
@@ -95,11 +95,11 @@ jobs:
95
95
language: python
96
96
python: '3.5'
97
97
install:
98
-
- set -o errexit; source .travis/extended_lint_04_install.sh
98
+
- set -o errexit; source ./ci/extended_lint/04_install.sh
99
99
before_script:
100
-
- set -o errexit; source .travis/lint_05_before_script.sh
100
+
- set -o errexit; source ./ci/lint/05_before_script.sh
101
101
script:
102
-
- set -o errexit; source .travis/extended_lint_06_script.sh
102
+
- set -o errexit; source ./ci/extended_lint/06_script.sh
103
103
104
104
- stage: test
105
105
name: 'ARM [GOAL: install] [no unit or functional tests]'
0 commit comments