Skip to content

Commit 3d1a678

Browse files
authored
Merge pull request #22 from bltavares/refactor-ci-due-to-upstream-changes
Refactor PR CI
2 parents 580beaa + 8b388b0 commit 3d1a678

File tree

3 files changed

+58
-2
lines changed

3 files changed

+58
-2
lines changed

.github/workflows/android.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# We could use `@actions-rs/cargo` Action ability to automatically install `cross` tool
2+
# in order to compile our application for some unusual targets.
3+
4+
# Separated as another pipeline to avoid errors cancelling other targets until the cross issue is solved
5+
# Ref: https://github.com/bltavares/multicast-socket/issues/18
6+
7+
on: [push, pull_request]
8+
9+
name: Cross-compile android
10+
11+
jobs:
12+
build:
13+
name: Build
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
target:
18+
- aarch64-linux-android
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: actions-rs/toolchain@v1
22+
with:
23+
toolchain: 1.67
24+
target: ${{ matrix.target }}
25+
override: true
26+
- uses: actions-rs/cargo@v1
27+
with:
28+
use-cross: true
29+
command: build
30+
args: --target=${{ matrix.target }} --examples

.github/workflows/cross_compile.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
matrix:
1414
target:
1515
- armv7-unknown-linux-gnueabihf
16-
- aarch64-linux-android
17-
- mips-unknown-linux-musl
1816
- x86_64-unknown-linux-musl
1917
- aarch64-unknown-linux-gnu
2018
steps:

.github/workflows/mips.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Since Rust 1.72+ MIPS is a Tier 3 platform, and there are many errors on the latest nightly to use -Z build-std.
2+
# So we pin it to 1.71 to produce valid targets
3+
# Ref: https://github.com/rust-lang/compiler-team/issues/648
4+
5+
on: [push, pull_request]
6+
7+
name: Cross-compile MIPS
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
target:
16+
- mips-unknown-linux-musl
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: actions-rs/toolchain@v1
20+
with:
21+
toolchain: 1.71
22+
target: ${{ matrix.target }}
23+
override: true
24+
- uses: actions-rs/cargo@v1
25+
with:
26+
use-cross: true
27+
command: build
28+
args: --target=${{ matrix.target }} --examples

0 commit comments

Comments
 (0)