Skip to content

Commit dc359f7

Browse files
authored
Pin rust in s390x test job (#254)
* Pin rust in s390x test job Since the Rust 1.50.0 the s390x CI test job has been failing. This looks to be caused by rust-lang/rust#80810. Until the issue is resolved in a released version of rust this pins the rust version used in the job to the previous release 1.49.0 which does not have this issue and should work fine. * Call rustup in the before_install stage
1 parent 49727f8 commit dc359f7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ jobs:
3737
stage: Linux non-x86_64
3838
python: 3.7
3939
arch: s390x
40+
before_install:
41+
- which python
42+
- sh tools/install_rust.sh
43+
- export PATH=~/.cargo/bin:$PATH
44+
- which python
45+
- pip install -U pip virtualenv
46+
- rustup default 1.49.0
4047
- name: Python 3.7 Tests arm64 Linux
4148
stage: Linux non-x86_64
4249
python: 3.7

0 commit comments

Comments
 (0)