Skip to content

Commit

Permalink
Merge pull request #22 from bltavares/refactor-ci-due-to-upstream-cha…
Browse files Browse the repository at this point in the history
…nges

Refactor PR CI
  • Loading branch information
bltavares authored Apr 27, 2024
2 parents 580beaa + 8b388b0 commit 3d1a678
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 2 deletions.
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

0 comments on commit 3d1a678

Please sign in to comment.