Switch CI to using stable instead of nightly toolchain
This commit is contained in:
@@ -16,7 +16,7 @@ jobs:
|
|||||||
- u64_backend
|
- u64_backend
|
||||||
- u32_backend
|
- u32_backend
|
||||||
toolchain:
|
toolchain:
|
||||||
- nightly
|
- stable
|
||||||
- 1.41.0
|
- 1.41.0
|
||||||
name: test
|
name: test
|
||||||
steps:
|
steps:
|
||||||
@@ -93,7 +93,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
toolchain:
|
toolchain:
|
||||||
- nightly
|
- stable
|
||||||
- 1.41.0
|
- 1.41.0
|
||||||
name: test simple_login command-line example
|
name: test simple_login command-line example
|
||||||
steps:
|
steps:
|
||||||
@@ -117,7 +117,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
toolchain:
|
toolchain:
|
||||||
- nightly
|
- stable
|
||||||
- 1.41.0
|
- 1.41.0
|
||||||
name: test digital_locker command-line example
|
name: test digital_locker command-line example
|
||||||
steps:
|
steps:
|
||||||
@@ -162,11 +162,11 @@ jobs:
|
|||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install nightly toolchain
|
- name: Install stable toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: nightly
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
components: rustfmt, clippy
|
components: rustfmt, clippy
|
||||||
|
|
||||||
@@ -184,11 +184,11 @@ jobs:
|
|||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install nightly toolchain
|
- name: Install stable toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: nightly
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
components: rustfmt, clippy
|
components: rustfmt, clippy
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -126,7 +126,7 @@ impl<CS: CipherSuite> RegistrationResponse<CS> {
|
|||||||
&checked_slice[elem_len..],
|
&checked_slice[elem_len..],
|
||||||
)?)?;
|
)?)?;
|
||||||
|
|
||||||
Ok(Self { server_s_pk, beta })
|
Ok(Self { beta, server_s_pk })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user