@@ -11,27 +11,27 @@ jobs:
11
11
matrix :
12
12
rust :
13
13
# x86 without sse/sse2 on by default
14
- - { target: i586-pc-windows-msvc, toolchain: 1.52.0 , os: windows-latest }
14
+ - { target: i586-pc-windows-msvc, toolchain: 1.52.1 , os: windows-latest }
15
15
- { target: i586-pc-windows-msvc, toolchain: stable, os: windows-latest }
16
16
- { target: i586-pc-windows-msvc, toolchain: beta, os: windows-latest }
17
17
- { target: i586-pc-windows-msvc, toolchain: nightly, os: windows-latest }
18
18
# x86
19
- - { target: i686-pc-windows-msvc, toolchain: 1.52.0 , os: windows-latest }
19
+ - { target: i686-pc-windows-msvc, toolchain: 1.52.1 , os: windows-latest }
20
20
- { target: i686-pc-windows-msvc, toolchain: stable, os: windows-latest }
21
21
- { target: i686-pc-windows-msvc, toolchain: beta, os: windows-latest }
22
22
- { target: i686-pc-windows-msvc, toolchain: nightly, os: windows-latest }
23
23
# x86_64
24
- - { target: x86_64-pc-windows-msvc, toolchain: 1.52.0 , os: windows-latest }
24
+ - { target: x86_64-pc-windows-msvc, toolchain: 1.52.1 , os: windows-latest }
25
25
- { target: x86_64-pc-windows-msvc, toolchain: stable, os: windows-latest }
26
26
- { target: x86_64-pc-windows-msvc, toolchain: beta, os: windows-latest }
27
27
- { target: x86_64-pc-windows-msvc, toolchain: nightly, os: windows-latest }
28
28
# # arm
29
- # - { target: arm-unknown-linux-gnueabihf, toolchain: 1.52.0 , os: ubuntu-latest }
29
+ # - { target: arm-unknown-linux-gnueabihf, toolchain: 1.52.1 , os: ubuntu-latest }
30
30
# - { target: arm-unknown-linux-gnueabihf, toolchain: stable, os: ubuntu-latest }
31
31
# - { target: arm-unknown-linux-gnueabihf, toolchain: beta, os: ubuntu-latest }
32
32
# - { target: arm-unknown-linux-gnueabihf, toolchain: nightly, os: ubuntu-latest }
33
33
# # aarch64
34
- # - { target: aarch64-unknown-linux-gnu, toolchain: 1.52.0 , os: ubuntu-latest }
34
+ # - { target: aarch64-unknown-linux-gnu, toolchain: 1.52.1 , os: ubuntu-latest }
35
35
# - { target: aarch64-unknown-linux-gnu, toolchain: stable, os: ubuntu-latest }
36
36
# - { target: aarch64-unknown-linux-gnu, toolchain: beta, os: ubuntu-latest }
37
37
# - { target: aarch64-unknown-linux-gnu, toolchain: nightly, os: ubuntu-latest }
75
75
- name : Test with 'native' CPU features + No Default Cargo Features
76
76
if : matrix.rust.target == 'i586-pc-windows-msvc' || matrix.rust.target == 'i686-pc-windows-msvc' || matrix.rust.target == 'x86_64-pc-windows-msvc' || matrix.rust.target == 'wasm32-wasi'
77
77
run : cargo test --target ${{ matrix.rust.target }} --no-default-features
78
+ env :
79
+ CARGO_TARGET_DIR : " target-native"
80
+
78
81
- name : Test with 'native' CPU features + All Cargo Features
79
82
if : matrix.rust.target == 'i586-pc-windows-msvc' || matrix.rust.target == 'i686-pc-windows-msvc' || matrix.rust.target == 'x86_64-pc-windows-msvc' || matrix.rust.target == 'wasm32-wasi'
80
83
run : cargo test --target ${{ matrix.rust.target }} --all-features
84
+ env :
85
+ CARGO_TARGET_DIR : " target-native"
0 commit comments