-
Notifications
You must be signed in to change notification settings - Fork 40
95 lines (87 loc) · 2.77 KB
/
Cross.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Cross
on:
[pull_request, workflow_dispatch]
# NOTE: Use older toolchains since there's bugs cross-compiling
# for some more recent architectures.
jobs:
cross:
name: Rust ${{matrix.target}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
# Android
- aarch64-linux-android
- arm-linux-androideabi
- armv7-linux-androideabi
- i686-linux-android
- x86_64-linux-android
# Linux
- aarch64-unknown-linux-gnu
- arm-unknown-linux-gnueabi
- armv7-unknown-linux-gnueabihf
- i686-unknown-linux-gnu
- i686-unknown-linux-musl
# NOTE: This fails on cross v0.2.1, which is unusual since
# manually invoking the failing tests with qemu-5.1.0 passes.
#- powerpc64le-unknown-linux-gnu
# NOTE: This has glibc linker issues. Restore later.
#- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
# Windows
- x86_64-pc-windows-gnu
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{matrix.target}}
- name: Install Cross
run: |
cargo install [email protected]
rustup toolchain add 1.65.0
- name: Run Check
run: |
cross +1.65.0 check --target ${{matrix.target}}
- name: Run Simple Test
run: |
cross +1.65.0 test --target ${{matrix.target}}
- name: Run Feature Test
run: |
cross +1.65.0 test --target ${{matrix.target}} --features=radix,format,compact
notest:
name: Rust ${{matrix.target}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
# Linux
- powerpc64-unknown-linux-gnu
- s390x-unknown-linux-gnu
# FreeBSD
- i686-unknown-freebsd
- x86_64-unknown-freebsd
- x86_64-unknown-netbsd
# MIPS
# These targets have been removed from Tier 2
# support, so we're using an older compiler and
# just checking they can be checked.
- mips-unknown-linux-gnu
- mips64-unknown-linux-gnuabi64
- mips64el-unknown-linux-gnuabi64
- mipsel-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Install Cross
run: |
cargo install [email protected]
rustup toolchain add 1.65.0
rustup toolchain install 1.65.0 --target ${{matrix.target}} --profile minimal --no-self-update
- name: Run check
run: |
cross +1.65.0 check --target ${{matrix.target}}