diff options
| author | David Lönnhager <david.l@mullvad.net> | 2024-02-06 14:47:17 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2024-02-06 14:47:17 +0100 |
| commit | 682d2c27c64022bc064b5418bd8be338471a1c50 (patch) | |
| tree | 115aa4b3cd91bf255648a885531b583869e478ce /.github | |
| parent | 48c023ea883be51aedd0cc3eccac2d4fec77ab2c (diff) | |
| download | mullvadvpn-682d2c27c64022bc064b5418bd8be338471a1c50.tar.xz mullvadvpn-682d2c27c64022bc064b5418bd8be338471a1c50.zip | |
Temporarily disable Rust nightly builds for daemon
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/daemon.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml index 3293e02879..8fcea16948 100644 --- a/.github/workflows/daemon.yml +++ b/.github/workflows/daemon.yml @@ -57,7 +57,11 @@ jobs: strategy: matrix: - rust: [stable, beta, nightly] + # FIXME: Temporarily disable nightly builds due to an issue with curve25519-dalek + # Once this has been fixed, enable nightly builds again: + # https://github.com/dalek-cryptography/curve25519-dalek/pull/619 + #rust: [stable, beta, nightly] + rust: [stable, beta] continue-on-error: true steps: # Fix for HOME path overridden by GH runners when building in containers, see: |
