@@ -29,18 +29,18 @@ jobs:
29
29
- stage : build_commit
30
30
os : linux
31
31
script :
32
- - scripts/travis/build_test.sh
32
+ - travis_retry scripts/travis/build_test.sh
33
33
34
34
- stage : build_pr
35
35
os : linux
36
36
name : Ubuntu AMD64 Build
37
37
script :
38
- - scripts/travis/build_test.sh
38
+ - travis_retry scripts/travis/build_test.sh
39
39
- # same stage, parallel job
40
40
os : linux
41
41
name : Ubuntu AMD64 Integration Test
42
42
script :
43
- - ./scripts/travis/integration_test.sh
43
+ - travis_retry ./scripts/travis/integration_test.sh
44
44
- # same stage, parallel job
45
45
name : External ARM64 Build
46
46
os : linux
52
52
packages :
53
53
- awscli
54
54
script :
55
- - scripts/travis/external_build.sh ./scripts/travis/build_test.sh
55
+ - travis_retry scripts/travis/external_build.sh ./scripts/travis/build_test.sh
56
56
- # same stage, parallel job
57
57
name : External ARM64 Integration Test
58
58
os : linux
@@ -70,13 +70,13 @@ jobs:
70
70
osx_image : xcode11
71
71
name : MacOS AMD64 Build
72
72
script :
73
- - scripts/travis/build_test.sh
73
+ - travis_retry scripts/travis/build_test.sh
74
74
- # same stage, parallel job
75
75
os : osx
76
76
osx_image : xcode11
77
77
name : MacOS AMD64 Integration Test
78
78
script :
79
- - ./scripts/travis/integration_test.sh
79
+ - travis_retry ./scripts/travis/integration_test.sh
80
80
- # same stage, parallel job
81
81
os : windows
82
82
name : Windows x64 Build
@@ -85,24 +85,24 @@ jobs:
85
85
- $HOME/AppData/Local/Temp/chocolatey
86
86
- /C/tools/msys64
87
87
script :
88
- - $mingw64 scripts/travis/build_test.sh
88
+ - travis_retry $mingw64 scripts/travis/build_test.sh
89
89
90
90
- stage : build_release
91
91
os : linux
92
92
name : Ubuntu AMD64 Build
93
93
script :
94
- - ./scripts/travis/build_test.sh
94
+ - travis_retry ./scripts/travis/build_test.sh
95
95
- # same stage, parallel job
96
96
os : linux
97
97
name : Ubuntu AMD64 Integration Test
98
98
script :
99
- - ./scripts/travis/integration_test.sh
99
+ - travis_retry ./scripts/travis/integration_test.sh
100
100
- # same stage, parallel job
101
101
os : osx
102
102
osx_image : xcode11
103
103
name : MacOS AMD64 Build
104
104
script :
105
- - scripts/travis/build_test.sh
105
+ - travis_retry scripts/travis/build_test.sh
106
106
- # same stage, parallel job
107
107
name : External ARM64 Integration Test
108
108
os : linux
@@ -123,7 +123,7 @@ jobs:
123
123
- $HOME/AppData/Local/Temp/chocolatey
124
124
- /C/tools/msys64
125
125
script :
126
- - $mingw64 scripts/travis/build_test.sh
126
+ - travis_retry $mingw64 scripts/travis/build_test.sh
127
127
128
128
- stage : deploy
129
129
name : Ubuntu Deploy
0 commit comments