Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
- `wayland-backend` fails because it requires a nightly feature. Rather than submit a patch, we'll just build our static binary with nightly until somebody else fixes it.
  • Loading branch information
mdegans committed May 23, 2024
1 parent 8bce293 commit 793992e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
# Nightly is required by `wayland-backend` because:
# error[E0554]: `#![feature]` may not be used on the stable release channel
# Error: --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wayland-backend-0.3.3/src/lib.rs:46:23
toolchain: nightly
components: rustfmt, clippy
- name: Install CUDA
run: sudo apt-get install nvidia-cuda-toolkit nvidia-cudnn nvidia-cuda-dev
Expand Down

0 comments on commit 793992e

Please sign in to comment.