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
# We use this to install macOS dependencies instead of the built in `homebrew` plugin,
88
96
# because in xcode earlier than 11 they have a bug requiring updating the system which overall takes ~8 minutes.
@@ -94,6 +102,8 @@ before_script: ./autogen.sh
94
102
95
103
# travis auto terminates jobs that go for 10 minutes without printing to stdout, but travis_wait doesn't work well with forking programs like valgrind (https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received https://github.com/bitcoin-core/secp256k1/pull/750#issuecomment-623476860)
96
104
script:
105
+
- if [ -n "$QEMU" ]; then docker run --rm --privileged multiarch/qemu-user-static --reset -p yes; fi
106
+
- cat /proc/sys/fs/binfmt_misc/qemu-s390x
97
107
- function keep_alive() { while true; do echo -en "\a"; sleep 60; done }
# the `--error-exitcode` is required to make the test fail if valgrind found errors, otherwise it'll return 0 (http://valgrind.org/docs/manual/manual-core.html)
0 commit comments