Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Refactor PR CI #22

Merged
merged 2 commits into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# We could use `@actions-rs/cargo` Action ability to automatically install `cross` tool
# in order to compile our application for some unusual targets.

# Separated as another pipeline to avoid errors cancelling other targets until the cross issue is solved
# Ref: https://github.com/bltavares/multicast-socket/issues/18

on: [push, pull_request]

name: Cross-compile android

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target:
- aarch64-linux-android
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.67
target: ${{ matrix.target }}
override: true
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --target=${{ matrix.target }} --examples
2 changes: 0 additions & 2 deletions .github/workflows/cross_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ jobs:
matrix:
target:
- armv7-unknown-linux-gnueabihf
- aarch64-linux-android
- mips-unknown-linux-musl
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-gnu
steps:
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/mips.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Since Rust 1.72+ MIPS is a Tier 3 platform, and there are many errors on the latest nightly to use -Z build-std.
# So we pin it to 1.71 to produce valid targets
# Ref: https://github.com/rust-lang/compiler-team/issues/648

on: [push, pull_request]

name: Cross-compile MIPS

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target:
- mips-unknown-linux-musl
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.71
target: ${{ matrix.target }}
override: true
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --target=${{ matrix.target }} --examples
Loading