@@ -6,40 +6,39 @@ cargo_cache:
6
6
# same VM. The binary will be built in 32-bit mode, but will execute on a
7
7
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
8
8
# the system's binaries, so the environment shouldn't matter.
9
- task :
10
- name : FreeBSD amd64
11
- freebsd_instance :
12
- image : freebsd-11-4-release-amd64
13
- # Install Rust
14
- setup_script :
15
- - fetch https://sh.rustup.rs -o rustup.sh
16
- - sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
17
- - $HOME/.cargo/bin/rustup target add i686-unknown-freebsd
18
- amd64_test_script :
19
- - . $HOME/.cargo/env
20
- - cargo test
21
- i386_test_script :
22
- - . $HOME/.cargo/env
23
- - cargo test --target i686-unknown-freebsd
24
- before_cache_script : rm -rf $CARGO_HOME/registry/index
9
+ # task:
10
+ # name: FreeBSD amd64
11
+ # freebsd_instance:
12
+ # image: freebsd-11-4-release-amd64
13
+ # # Install Rust
14
+ # setup_script:
15
+ # - fetch https://sh.rustup.rs -o rustup.sh
16
+ # - sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
17
+ # - $HOME/.cargo/bin/rustup target add i686-unknown-freebsd
18
+ # amd64_test_script:
19
+ # - . $HOME/.cargo/env
20
+ # - cargo test
21
+ # i386_test_script:
22
+ # - . $HOME/.cargo/env
23
+ # - cargo test --target i686-unknown-freebsd
24
+ # before_cache_script: rm -rf $CARGO_HOME/registry/index
25
25
26
- task :
27
- name : OSX x86_64
28
- env :
29
- RUST_TEST_THREADS : 1
30
- TARGET : x86_64-apple-darwin
31
- osx_instance :
32
- image : catalina-xcode
33
- setup_script :
34
- - which brew || true
35
- - curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
36
- - sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
37
- - . $HOME/.cargo/env
38
- - bash ci/install.sh
39
- script :
40
- - . $HOME/.cargo/env
41
- - bash ci/script.sh
42
- before_cache_script : rm -rf $CARGO_HOME/registry/index
26
+ # task:
27
+ # name: OSX x86_64
28
+ # env:
29
+ # RUST_TEST_THREADS: 1
30
+ # TARGET: x86_64-apple-darwin
31
+ # osx_instance:
32
+ # image: catalina-xcode
33
+ # setup_script:
34
+ # - curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
35
+ # - sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
36
+ # - . $HOME/.cargo/env
37
+ # - bash ci/install.sh
38
+ # script:
39
+ # - . $HOME/.cargo/env
40
+ # - bash ci/script.sh
41
+ # before_cache_script: rm -rf $CARGO_HOME/registry/index
43
42
44
43
task :
45
44
env :
@@ -49,12 +48,13 @@ task:
49
48
- name : Linux x86_64
50
49
env :
51
50
TARGET : x86_64-unknown-linux-gnu
52
- - name : Linux mipsel
53
- env :
54
- TARGET : mipsel-unknown-linux-gnu
51
+ # - name: Linux mipsel
52
+ # env:
53
+ # TARGET: mipsel-unknown-linux-gnu
55
54
container :
56
55
image : rust:1.36
57
56
setup_script :
57
+ - apt search docker
58
58
- apt-get install docker
59
59
- bash ci/install.sh
60
60
script :
0 commit comments