File tree Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 29
29
- target : i686-pc-windows-gnu
30
30
mingwdir : mingw32
31
31
mingw : https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
32
+ - target : aarch64-pc-windows-msvc
33
+ skip_tests : yes
32
34
steps :
33
35
- uses : actions/checkout@v2
34
36
# v2 defaults to a shallow checkout, but we need at least to the previous tag
62
64
run : |
63
65
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
64
66
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
65
- echo "SKIP_TESTS=" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
67
+ echo "SKIP_TESTS=${{ matrix.skip_tests }} " | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
66
68
- name : Cache cargo registry and git trees
67
69
uses : actions/cache@v2
68
70
with :
Original file line number Diff line number Diff line change 26
26
- target : i686-pc-windows-gnu
27
27
mingwdir : mingw32
28
28
mingw : https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
29
+ - target : aarch64-pc-windows-msvc
30
+ skip_tests : yes
29
31
steps :
30
32
- uses : actions/checkout@v2
31
33
# v2 defaults to a shallow checkout, but we need at least to the previous tag
59
61
run : |
60
62
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
61
63
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
62
- echo "SKIP_TESTS=" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
64
+ echo "SKIP_TESTS=${{ matrix.skip_tests }} " | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
63
65
- name : Cache cargo registry and git trees
64
66
uses : actions/cache@v2
65
67
with :
Original file line number Diff line number Diff line change 29
29
- target : i686-pc-windows-gnu
30
30
mingwdir : mingw32
31
31
mingw : https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
32
+ - target : aarch64-pc-windows-msvc
33
+ skip_tests : yes
32
34
steps :
33
35
- uses : actions/checkout@v2
34
36
# v2 defaults to a shallow checkout, but we need at least to the previous tag
62
64
run : |
63
65
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
64
66
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
65
- echo "SKIP_TESTS=" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
67
+ echo "SKIP_TESTS=${{ matrix.skip_tests }} " | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
66
68
- name : Cache cargo registry and git trees
67
69
uses : actions/cache@v2
68
70
with :
Original file line number Diff line number Diff line change 28
28
target :
29
29
- x86_64-pc-windows-msvc
30
30
- i686-pc-windows-msvc # skip-pr skip-master
31
+ - aarch64-pc-windows-msvc # skip-pr skip-master skip-stable
31
32
- x86_64-pc-windows-gnu # skip-pr
32
33
- i686-pc-windows-gnu # skip-pr skip-master
33
34
include :
37
38
- target : i686-pc-windows-gnu
38
39
mingwdir : mingw32
39
40
mingw : https://ci-mirrors.rust-lang.org/rustc/i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
41
+ - target : aarch64-pc-windows-msvc
42
+ skip_tests : yes
40
43
steps :
41
44
- uses : actions/checkout@v2
42
45
# v2 defaults to a shallow checkout, but we need at least to the previous tag
70
73
run : |
71
74
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
72
75
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
73
- echo "SKIP_TESTS=" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
76
+ echo "SKIP_TESTS=${{ matrix.skip_tests }} " | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
74
77
- name : Cache cargo registry and git trees
75
78
uses : actions/cache@v2
76
79
with :
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ case "$TARGET" in
20
20
mips* ) ;;
21
21
riscv* ) ;;
22
22
s390x* ) ;;
23
+ aarch64-pc-windows-msvc ) ;;
23
24
# default case, build with rustls enabled
24
25
* ) FEATURES+=(' --features' ' reqwest-rustls-tls' ) ;;
25
26
esac
You can’t perform that action at this time.
0 commit comments