2022-09-07 02:36:55 +02:00
|
|
|
name: Test suite
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
tags-ignore:
|
|
|
|
- "*"
|
|
|
|
|
2022-09-07 04:15:38 +02:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
|
|
|
|
|
2023-01-06 14:53:49 +01:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-09-07 02:36:55 +02:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- macos
|
|
|
|
- ubuntu
|
|
|
|
- windows
|
|
|
|
toolchain:
|
|
|
|
- stable
|
2023-01-06 14:53:49 +01:00
|
|
|
- 1.61.0
|
2022-09-07 02:36:55 +02:00
|
|
|
|
|
|
|
name: Test ${{ matrix.platform }} with Rust ${{ matrix.toolchain }}
|
|
|
|
runs-on: "${{ matrix.platform }}-latest"
|
|
|
|
|
|
|
|
steps:
|
2022-09-07 04:15:38 +02:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Configure toolchain
|
|
|
|
run: |
|
2023-01-06 14:53:49 +01:00
|
|
|
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update
|
2022-09-07 04:15:38 +02:00
|
|
|
rustup default ${{ matrix.toolchain }}
|
2022-09-07 05:41:34 +02:00
|
|
|
|
|
|
|
# https://github.com/actions/cache/issues/752
|
|
|
|
- if: ${{ runner.os == 'Windows' }}
|
|
|
|
name: Use GNU tar
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
|
|
|
echo "Adding GNU tar to PATH"
|
|
|
|
echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%"
|
|
|
|
|
2023-01-06 14:53:49 +01:00
|
|
|
- name: Cargo caching
|
2022-09-07 04:15:38 +02:00
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
key: ${{ runner.os }}-cargo-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-cargo-${{ matrix.toolchain }}-
|
|
|
|
${{ runner.os }}-cargo-
|
|
|
|
|
2023-01-06 14:53:49 +01:00
|
|
|
- name: Compilation caching
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: target/
|
|
|
|
key: ${{ runner.os }}-target-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2022-09-07 04:15:38 +02:00
|
|
|
- name: Run test suite
|
|
|
|
run: cargo test
|
|
|
|
- name: Check that CLI runs
|
|
|
|
run: cargo run -p watchexec-cli -- -1 echo
|
2023-01-06 14:53:49 +01:00
|
|
|
|
|
|
|
cross-checks:
|
|
|
|
name: Checks only against select targets
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Configure toolchain
|
|
|
|
run: |
|
|
|
|
rustup toolchain install --profile minimal --no-self-update stable
|
|
|
|
rustup default stable
|
|
|
|
|
|
|
|
sudo apt-get install -y musl-tools
|
|
|
|
rustup target add x86_64-unknown-linux-musl
|
|
|
|
|
|
|
|
- name: Install cross
|
|
|
|
uses: taiki-e/install-action@v2
|
|
|
|
with:
|
|
|
|
tool: cross
|
|
|
|
|
|
|
|
- name: Cargo caching
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
key: ${{ runner.os }}-cargo-stable-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-cargo-stable-
|
|
|
|
${{ runner.os }}-cargo-
|
|
|
|
|
|
|
|
- run: cargo check --target x86_64-unknown-linux-musl
|
|
|
|
- run: cross check --target x86_64-unknown-freebsd
|
|
|
|
- run: cross check --target x86_64-unknown-netbsd
|