Skip to content

build(deps): bump inotify from 0.11.0 to 0.11.1 #5768

build(deps): bump inotify from 0.11.0 to 0.11.1

build(deps): bump inotify from 0.11.0 to 0.11.1 #5768

Workflow file for this run

name: cross
on:
pull_request: {}
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
TRIPLE: unknown-linux-gnu
jobs:
build:
strategy:
fail-fast: false
matrix:
arch:
- x86_64
- i686
- aarch64
- powerpc64le
- s390x
name: ${{matrix.arch}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Cache
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cross-${{matrix.arch}}-${{ hashFiles('**/Cargo.lock') }}
- name: Install cross-rs
run: |
cargo install cross --git https://github.com/cross-rs/cross
cross --version
- name: Ensure the latest base image
run: docker pull ghcr.io/cross-rs/${{matrix.arch}}-$TRIPLE:main
- name: Build for ${{matrix.arch}}
run: cross build -v --target ${{matrix.arch}}-$TRIPLE