Skip to content

Commit

Permalink
Make most test CI jobs run on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
micbakos-rdx committed Sep 23, 2024
1 parent 47e140a commit cd3fe01
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUST_TOOLCHAIN: nightly-2024-01-11
RUST_TOOLCHAIN: nightly-2024-07-30
RUST_COMPONENTS: "rust-std"
SWIFT_CODE_COV_REPORT_PATH: ".build/artifacts/info.lcov" # chosen
jobs:
# typos
check-typos:
runs-on: macos-14-xlarge
runs-on: ubuntu-latest
steps:
- uses: RDXWorks-actions/checkout@main

Expand All @@ -40,7 +40,7 @@ jobs:

# cargo check
check-cargo-check:
runs-on: macos-14-xlarge
runs-on: ubuntu-latest
steps:
- uses: RDXWorks-actions/checkout@main

Expand All @@ -56,7 +56,7 @@ jobs:

# cargo fmt check
check-formatting:
runs-on: macos-14-xlarge
runs-on: ubuntu-latest
steps:
- uses: RDXWorks-actions/checkout@main

Expand All @@ -72,7 +72,7 @@ jobs:

# clippy
check-clippy:
runs-on: macos-14-xlarge
runs-on: ubuntu-latest
steps:
- uses: RDXWorks-actions/checkout@main

Expand All @@ -88,7 +88,7 @@ jobs:

# Rust unit, doc and integration
test-rust:
runs-on: macos-14-xlarge
runs-on: ubuntu-latest
steps:
- uses: RDXWorks-actions/checkout@main

Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

# Kotlin test run on JVM on macOS (Apple Silicon)
test-kotlin:
runs-on: macos-14-xlarge
runs-on: ubuntu-latest
steps:
- uses: RDXWorks-actions/checkout@main

Expand All @@ -160,11 +160,11 @@ jobs:
components: ${{ env.RUST_COMPONENTS }}
target: armv7-linux-androideabi

- name: Install Rust Toolchain for aarch64-apple-darwin
- name: Install Rust Toolchain for x86_64-unknown-linux-gnu
uses: RDXWorks-actions/toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
target: aarch64-apple-darwin
target: x86_64-unknown-linux-gnu

- name: Set up JDK 17
uses: RDXWorks-actions/setup-java@v3
Expand Down

0 comments on commit cd3fe01

Please sign in to comment.