File tree 2 files changed +11
-20
lines changed
2 files changed +11
-20
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,17 @@ jobs:
12
12
if : tag IS present
13
13
script : ./ci/steps/linux-release.sh
14
14
install : null
15
- - name : Linux Release
16
- if : tag IS present
17
- arch : arm64
18
- script : |
19
- sudo apt-get update && sudo apt-get install -y jq || exit 1
20
- ./ci/steps/linux-release.sh
21
- install : null
15
+ # Unfortunately ARM on travis is very unreliable.
16
+ # We see random build failures, logging output being truncated, build being killed
17
+ # due to no output even though we use travis_wait etc.
18
+ # So we've disabled it for now.
19
+ # - name: Linux Release
20
+ # if: tag IS present
21
+ # arch: arm64
22
+ # script: |
23
+ # sudo apt-get update && sudo apt-get install -y jq || exit 1
24
+ # travis_wait 60./ci/steps/linux-release.sh
25
+ # install: null
22
26
- name : MacOS Release
23
27
if : tag IS present
24
28
os : osx
Original file line number Diff line number Diff line change @@ -5,19 +5,6 @@ main() {
5
5
cd " $( dirname " $0 " ) /../.."
6
6
source ./ci/lib.sh
7
7
8
- if [[ $( arch) == arm64 ]]; then
9
- # This, strangely enough, fixes the arm build being terminated for not having
10
- # output on Travis. It's as if output is buffered and only displayed once a
11
- # certain amount is collected. Five seconds didn't work but one second seems
12
- # to generate enough output to make it work.
13
- while true ; do
14
- echo ' Still running...'
15
- sleep 1
16
- done &
17
- trap " exit" INT TERM
18
- trap " kill 0" EXIT
19
- fi
20
-
21
8
./ci/container/exec.sh ./ci/steps/static-release.sh
22
9
./ci/container/exec.sh yarn pkg
23
10
./ci/release-container/push.sh
You can’t perform that action at this time.
0 commit comments