Adds support for monitoring for file changes using fanotify #613
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
ci: | |
name: CI | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Done | |
run: exit 0 | |
prepare: | |
name: Prepare | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fkirc/skip-duplicate-actions@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
test: | |
name: Tests | |
needs: | |
- prepare | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: | |
- stable | |
os: | |
- windows-latest | |
- macos-latest | |
- ubuntu-latest | |
target: | |
- i686-pc-windows-msvc | |
- i686-unknown-linux-gnu | |
- x86_64-pc-windows-msvc | |
- x86_64-unknown-linux-gnu | |
- x86_64-apple-darwin | |
exclude: | |
- os: windows-latest | |
target: x86_64-apple-darwin | |
- os: windows-latest | |
target: x86_64-unknown-linux-gnu | |
- os: windows-latest | |
target: i686-unknown-linux-gnu | |
- os: macos-latest | |
target: i686-pc-windows-msvc | |
- os: macos-latest | |
target: x86_64-pc-windows-msvc | |
- os: macos-latest | |
target: x86_64-unknown-linux-gnu | |
- os: macos-latest | |
target: i686-unknown-linux-gnu | |
- os: ubuntu-latest | |
target: i686-pc-windows-msvc | |
- os: ubuntu-latest | |
target: x86_64-pc-windows-msvc | |
- os: ubuntu-latest | |
target: x86_64-apple-darwin | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
override: true | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install linker | |
if: matrix.target == 'i686-unknown-linux-gnu' | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-9-multilib lib32gcc-9-dev | |
- name: Run tests | |
run: make clean test | |
- name: Generate code coverage | |
run: make clean coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: target/lcov.info | |
fail_ci_if_error: true | |
- name: Check if can publish to crates.io | |
uses: katyo/publish-crates@v1 | |
with: | |
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
dry-run: true | |
check-repo: false |