Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Switch from mips to powerpc for cross target #423

Merged
merged 2 commits into from
Nov 4, 2023
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
cargo check --tests --no-default-features --features="$FEATURES"
env:
FEATURES: ${{ matrix.features }}
mips_cross:
powerpc_cross:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: add_cross_target
run: |
rustup target add mips64-unknown-linux-gnuabi64
cargo build --all-features --target mips64-unknown-linux-gnuabi64
rustup target add powerpc-unknown-linux-gnu
cargo build --target powerpc-unknown-linux-gnu
test_all:
runs-on: ubuntu-latest
steps:
Expand Down
Loading