Skip to content

Commit

Permalink
Tweak actions config to use different key names in matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Oct 13, 2024
1 parent ab19a7b commit f670476
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,90 +14,90 @@ env:

jobs:
test:
name: Test - ${{ matrix.platform.os_name }} with rust ${{ matrix.toolchain }}
runs-on: ${{ matrix.platform.os }}
name: Test - ${{ matrix.platform.os-name }} with rust ${{ matrix.toolchain }}
runs-on: ${{ matrix.platform.runs-on }}
strategy:
fail-fast: false
matrix:
platform:
- os_name: FreeBSD-x86_64
os: ubuntu-20.04
- os-name: FreeBSD-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-freebsd
name: omegasort-FreeBSD-x86_64.tar.gz
skip_tests: true
- os_name: Linux-x86_64
os: ubuntu-20.04
- os-name: Linux-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-linux-musl
name: omegasort-Linux-x86_64-musl.tar.gz
- os_name: Linux-aarch64
os: ubuntu-20.04
- os-name: Linux-aarch64
runs-on: ubuntu-20.04
target: aarch64-unknown-linux-musl
name: omegasort-Linux-aarch64-musl.tar.gz
- os_name: Linux-arm
os: ubuntu-20.04
- os-name: Linux-arm
runs-on: ubuntu-20.04
target: arm-unknown-linux-musleabi
name: omegasort-Linux-arm-musl.tar.gz
- os_name: Linux-i686
os: ubuntu-20.04
- os-name: Linux-i686
runs-on: ubuntu-20.04
target: i686-unknown-linux-musl
name: omegasort-Linux-i686-musl.tar.gz
- os_name: Linux-powerpc
os: ubuntu-20.04
- os-name: Linux-powerpc
runs-on: ubuntu-20.04
target: powerpc-unknown-linux-gnu
name: omegasort-Linux-powerpc-gnu.tar.gz
- os_name: Linux-powerpc64
os: ubuntu-20.04
- os-name: Linux-powerpc64
runs-on: ubuntu-20.04
target: powerpc64-unknown-linux-gnu
name: omegasort-Linux-powerpc64-gnu.tar.gz
- os_name: Linux-powerpc64le
os: ubuntu-20.04
- os-name: Linux-powerpc64le
runs-on: ubuntu-20.04
target: powerpc64le-unknown-linux-gnu
name: omegasort-Linux-powerpc64le.tar.gz
- os_name: Linux-riscv64
os: ubuntu-20.04
- os-name: Linux-riscv64
runs-on: ubuntu-20.04
target: riscv64gc-unknown-linux-gnu
name: omegasort-Linux-riscv64gc-gnu.tar.gz
- os_name: Linux-s390x
os: ubuntu-20.04
- os-name: Linux-s390x
runs-on: ubuntu-20.04
target: s390x-unknown-linux-gnu
name: omegasort-Linux-s390x-gnu.tar.gz
- os_name: NetBSD-x86_64
os: ubuntu-20.04
- os-name: NetBSD-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-netbsd
name: omegasort-NetBSD-x86_64.tar.gz
skip_tests: true
- os_name: Windows-aarch64
os: windows-latest
- os-name: Windows-aarch64
runs-on: windows-latest
target: aarch64-pc-windows-msvc
name: omegasort-Windows-aarch64.zip
skip_tests: true
- os_name: Windows-i686
os: windows-latest
- os-name: Windows-i686
runs-on: windows-latest
target: i686-pc-windows-msvc
name: omegasort-Windows-i686.zip
- os_name: Windows-x86_64
os: windows-latest
- os-name: Windows-x86_64
runs-on: windows-latest
target: x86_64-pc-windows-msvc
name: omegasort-Windows-x86_64.zip
- os_name: macOS-x86_64
os: macOS-latest
- os-name: macOS-x86_64
runs-on: macOS-latest
target: x86_64-apple-darwin
name: omegasort-Darwin-x86_64.tar.gz
- os_name: macOS-aarch64
os: macOS-latest
- os-name: macOS-aarch64
runs-on: macOS-latest
target: aarch64-apple-darwin
name: omegasort-Darwin-aarch64.tar.gz
toolchain:
- stable
include:
- platform:
os_name: Linux-x86_64
os: ubuntu-20.04
os-name: Linux-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-linux-musl
toolchain: beta
- platform:
os_name: Linux-x86_64
os: ubuntu-20.04
os-name: Linux-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-linux-musl
toolchain: nightly
steps:
Expand Down

0 comments on commit f670476

Please sign in to comment.