File tree Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1
1
task :
2
- name : stable x86_64-unknown-freebsd-11
2
+ name : stable x86_64-unknown-freebsd
3
3
freebsd_instance :
4
4
image : freebsd-11-3-stable-amd64-v20190801
5
5
setup_script :
11
11
test_script :
12
12
- . $HOME/.cargo/env
13
13
- sh ci/run.sh x86_64-unknown-freebsd
14
+
15
+
16
+ task :
17
+ name : stable x86_64-unknown-freebsd-11
18
+ freebsd_instance :
19
+ image : freebsd-11-3-stable-amd64-v20190801
20
+ setup_script :
21
+ - pkg install -y curl
22
+ - curl https://sh.rustup.rs -sSf --output rustup.sh
23
+ - sh rustup.sh -y
24
+ - . $HOME/.cargo/env
25
+ - rustup default stable
26
+ test_script :
27
+ - . $HOME/.cargo/env
28
+ - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
14
29
15
30
task :
16
31
name : nightly x86_64-unknown-freebsd-12
24
39
- rustup default nightly
25
40
test_script :
26
41
- . $HOME/.cargo/env
27
- - sh ci/run.sh x86_64-unknown-freebsd
42
+ - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
Original file line number Diff line number Diff line change 15
15
vmImage : ubuntu-16.04
16
16
steps :
17
17
- template : azure-install-rust.yml
18
- - bash : sh ./ci/run-docker.sh $TARGET
18
+ - bash : LIBC_CI=1 sh ./ci/run-docker.sh $TARGET
19
19
displayName : Execute run-docker.sh
20
20
strategy :
21
21
matrix :
30
30
vmImage : ubuntu-16.04
31
31
steps :
32
32
- template : azure-install-rust.yml
33
- - bash : sh ./ci/run-docker.sh $TARGET
33
+ - bash : LIBC_CI=1 sh ./ci/run-docker.sh $TARGET
34
34
displayName : Execute run-docker.sh
35
35
strategy :
36
36
matrix :
88
88
vmImage : macos-10.14
89
89
steps :
90
90
- template : azure-install-rust.yml
91
- - bash : sh ./ci/run.sh $TARGET
91
+ - bash : LIBC_CI=1 sh ./ci/run.sh $TARGET
92
92
displayName : Execute run.sh
93
93
strategy :
94
94
matrix :
@@ -100,7 +100,7 @@ jobs:
100
100
vmImage : macos-10.13
101
101
steps :
102
102
- template : azure-install-rust.yml
103
- - bash : sh ./ci/run.sh $TARGET
103
+ - bash : LIBC_CI=1 sh ./ci/run.sh $TARGET
104
104
displayName : Execute run.sh
105
105
strategy :
106
106
matrix :
@@ -112,7 +112,7 @@ jobs:
112
112
vmImage : vs2017-win2016
113
113
steps :
114
114
- template : azure-install-rust.yml
115
- - bash : sh ./ci/run.sh $TARGET
115
+ - bash : LIBC_CI=1 sh ./ci/run.sh $TARGET
116
116
displayName : Execute run.sh
117
117
strategy :
118
118
matrix :
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ run() {
23
23
docker run \
24
24
--rm \
25
25
--user " $( id -u) " :" $( id -g) " \
26
+ --env LIBC_CI \
26
27
--env CARGO_HOME=/cargo \
27
28
--env CARGO_TARGET_DIR=/checkout/target \
28
29
--volume " $( dirname " $( dirname " $( command -v cargo) " ) " ) " :/cargo \
Original file line number Diff line number Diff line change @@ -87,8 +87,6 @@ if [ "$TARGET" = "x86_64-unknown-linux-gnux32" ]; then
87
87
opt=" --release"
88
88
fi
89
89
90
- export LIBC_CI=1
91
-
92
90
cargo test -vv $opt --no-default-features --manifest-path libc-test/Cargo.toml \
93
91
--target " ${TARGET} "
94
92
You can’t perform that action at this time.
0 commit comments