Split test job

This commit is contained in:
ByteDream 2022-11-30 19:54:39 +01:00
parent 12d49a27e4
commit a3c717dc1a

View file

@ -8,15 +8,13 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
test: test-nix:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
include: include:
- os: ubuntu-latest - os: ubuntu-latest
toolchain: x86_64-unknown-linux-musl toolchain: x86_64-unknown-linux-musl
- os: windows-latest
toolchain: x86_64-pc-windows-gnu
- os: macos-latest - os: macos-latest
toolchain: x86_64-apple-darwin toolchain: x86_64-apple-darwin
steps: steps:
@ -48,10 +46,50 @@ jobs:
command: test command: test
args: --all-features args: --all-features
test-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- run: vcpkg integrate install
- name: Install OpenSSL
run: vcpkg install openssl:x64-windows-static-md
- name: Set env variables
shell: bash
run: echo "CFLAGS=-I$(echo $VCPKG_INSTALLATION_ROOT)\packages\openssl_x64-windows-static-md\include" >> $GITHUB_ENV
- name: Cargo cache # https://github.com/actions/cache/blob/main/examples.md#rust---cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: x86_64-pc-windows-msvc
default: true
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args:
build-nix: build-nix:
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
needs: needs:
- test - test-nix
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
@ -115,7 +153,7 @@ jobs:
build-windows: build-windows:
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
needs: needs:
- test - test-windows
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout - name: Checkout
@ -161,3 +199,17 @@ jobs:
name: crunchy-cli_windows.exe name: crunchy-cli_windows.exe
path: ./target/release/crunchy-cli.exe path: ./target/release/crunchy-cli.exe
if-no-files-found: error if-no-files-found: error
- name: Upload manpages artifact
uses: actions/upload-artifact@v3
with:
name: manpages
path: ./target/release/manpages
if-no-files-found: error
- name: Upload completions artifact
uses: actions/upload-artifact@v3
with:
name: completions
path: ./target/release/completions
if-no-files-found: error