Skip to content

Fix ci #486

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
task:
only_if: $CIRRUS_BRANCH == 'master' || $CIRRUS_PR != ''
matrix:
- name: FreeBSD 13.2
- name: FreeBSD 13.4
freebsd_instance:
image_family: freebsd-13-2-snap
# Install Rust
image_family: freebsd-13-4-snap
# Install Rust
setup_script:
- fetch https://sh.rustup.rs -o rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain stable
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v2

- name: Cargo cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.cargo
key: cargo-${{ matrix.rust }}
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v2

- name: Cargo cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.cargo
key: cargo-${{ matrix.rust }}
Expand All @@ -61,7 +61,7 @@ jobs:
rust-version: ${{ matrix.rust }}

- name: Install system dependencies
run: sudo apt-get install libxkbcommon-dev libwayland-dev
run: sudo apt-get install libfontconfig1-dev libxkbcommon-dev libwayland-dev

- name: Test lib no features
run: cargo test --no-default-features --lib
Expand Down
Loading