Skip to content
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ on:
jobs:
check:
name: Run checks on ${{ matrix.os }}
runs-on: [self-hosted, "${{ matrix.os }}"]
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-11, macOS]
os: [ubuntu-latest, windows-latest, macos-latest]
features:
[
"",
Expand Down Expand Up @@ -64,11 +64,11 @@ jobs:

check-nightly:
name: Run checks on ${{ matrix.os }} with Nightly
runs-on: [self-hosted, "${{ matrix.os }}"]
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -91,11 +91,11 @@ jobs:

check-1-72:
name: Run 1.72 checks on ${{ matrix.os }}
runs-on: [self-hosted, "${{ matrix.os }}"]
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -117,11 +117,11 @@ jobs:

check-wasm:
name: Run wasm checks on ${{ matrix.os }}
runs-on: [self-hosted, "${{ matrix.os }}"]
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
Expand All @@ -141,11 +141,11 @@ jobs:

check-32bits:
name: Run 32bits checks on ${{ matrix.os }}
runs-on: [self-hosted, "${{ matrix.os }}"]
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
Expand All @@ -165,11 +165,11 @@ jobs:

test:
name: Run tests on ${{ matrix.os }}
runs-on: [self-hosted, "${{ matrix.os }}"]
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macOS]
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v2
Expand Down
Loading