summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@wezfurlong.org>2020-05-25 11:20:32 -0700
committerWez Furlong <wez@wezfurlong.org>2020-05-25 11:20:32 -0700
commit7566feac33f11024825b2564aad4da9673c81587 (patch)
treeee2bc2d29c7e7cb20322d9188e8bfc20f1c7b161
parent9692aeb162fb8810267faf27a7bdb551e36ec2ed (diff)
downloadssh2-rs-7566feac33f11024825b2564aad4da9673c81587.zip
drop nightly rust from CI builds
The systest tests depend, via the unmaintained syntex crate, on extprim which uses legacy asm! syntax. This commit should make the CI green again, but we may want to consider dropping the systest tests from this repo to avoid more busywork in the future.
-rw-r--r--.github/workflows/linux.yml2
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/windows.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 8408a56..b386b7d 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-16.04, ubuntu-18.04]
- rust_toolchain: [stable, nightly, beta]
+ rust_toolchain: [stable, beta]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 29b8bbe..186b553 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -21,7 +21,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
- toolchain: nightly
+ toolchain: stable
override: true
- name: Export OpenSSL environment variables
run: |
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 14ade20..c5573b0 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -24,7 +24,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
- toolchain: nightly
+ toolchain: stable
override: true
target: ${{ matrix.env.TARGET }}
- name: Build and test