Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
feat: with base
Browse files Browse the repository at this point in the history
  • Loading branch information
kjuulh committed Mar 19, 2023
1 parent 0f816b5 commit 7e6853e
Showing 1 changed file with 24 additions and 27 deletions.
51 changes: 24 additions & 27 deletions .github/workflows/ci-multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
- stable
- beta
- nightly
- nightly-musl
- nightly-32
- nightly-mips
- nightly-arm
- macos
#- nightly-musl
#- nightly-32
#- nightly-mips
#- nightly-arm
#- macos
# - win-msvc
#- win-gnu
include:
Expand All @@ -47,25 +47,25 @@ jobs:
- build: nightly
os: ubuntu-22.04
rust: nightly
- build: nightly-musl
os: ubuntu-22.04
rust: nightly
target: x86_64-unknown-linux-musl
- build: nightly-32
os: ubuntu-22.04
rust: nightly
target: i686-unknown-linux-gnu
- build: nightly-mips
os: ubuntu-22.04
rust: nightly
target: mips64-unknown-linux-gnuabi64
- build: nightly-arm
os: ubuntu-22.04
rust: nightly
target: arm-unknown-linux-gnueabihf
- build: macos
os: macos-12
rust: nightly
#- build: nightly-musl
# os: ubuntu-22.04
# rust: nightly
# target: x86_64-unknown-linux-musl
#- build: nightly-32
# os: ubuntu-22.04
# rust: nightly
# target: i686-unknown-linux-gnu
#- build: nightly-mips
# os: ubuntu-22.04
# rust: nightly
# target: mips64-unknown-linux-gnuabi64
#- build: nightly-arm
# os: ubuntu-22.04
# rust: nightly
# target: arm-unknown-linux-gnueabihf
#- build: macos
# os: macos-12
# rust: nightly
#- build: win-msvc
# os: windows-2022
# rust: nightly
Expand All @@ -91,14 +91,12 @@ jobs:
if: matrix.target == ''
with:
toolchain: ${{ matrix.rust }}

- uses: actions-rs/toolchain@v1
if: matrix.target != ''
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
use-cross: true

- uses: actions-rs/cargo@v1
if: matrix.target != ''
with:
Expand All @@ -110,7 +108,6 @@ jobs:
with:
command: build
args: --workspace --verbose

- uses: actions-rs/cargo@v1
if: matrix.target != ''
with:
Expand Down

0 comments on commit 7e6853e

Please sign in to comment.