summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-02-06 14:47:17 +0100
committerDavid Lönnhager <david.l@mullvad.net>2024-02-06 14:47:17 +0100
commit682d2c27c64022bc064b5418bd8be338471a1c50 (patch)
tree115aa4b3cd91bf255648a885531b583869e478ce /.github
parent48c023ea883be51aedd0cc3eccac2d4fec77ab2c (diff)
downloadmullvadvpn-682d2c27c64022bc064b5418bd8be338471a1c50.tar.xz
mullvadvpn-682d2c27c64022bc064b5418bd8be338471a1c50.zip
Temporarily disable Rust nightly builds for daemon
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/daemon.yml6
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: