-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use latest actions/checkout@v4 with submodules=recursive.
- Loading branch information
Showing
4 changed files
with
21 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,9 @@ jobs: | |
if: github.event.label.name == 'benchmark' | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Use shared Rust toolchain setting up steps | ||
uses: ./.github/actions/toolchain-shared | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ env: | |
CARGO_INCREMENTAL: 1 | ||
# https://nexte.st/book/pre-built-binaries.html#using-nextest-in-github-actions | ||
CARGO_TERM_COLOR: always | ||
RUST_MIN_STACK: 31457280 | ||
# 30 MB of stack for Keccak tests | ||
RUST_MIN_STACK: 31457280 | ||
|
||
jobs: | ||
run_tests: | ||
|
@@ -33,7 +33,9 @@ jobs: | |
os: ["hetzner-1"] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Use shared Rust toolchain setting up steps | ||
uses: ./.github/actions/toolchain-shared | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,8 @@ env: | |
CARGO_INCREMENTAL: 1 | ||
# https://nexte.st/book/pre-built-binaries.html#using-nextest-in-github-actions | ||
CARGO_TERM_COLOR: always | ||
RUST_MIN_STACK: 31457280 | ||
# 30 MB of stack for Keccak tests | ||
RUST_MIN_STACK: 31457280 | ||
|
||
jobs: | ||
run_mdbook: | ||
|
@@ -22,7 +22,9 @@ jobs: | |
rust_toolchain_version: ["1.72"] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Use shared Rust toolchain setting up steps | ||
uses: ./.github/actions/toolchain-shared | ||
|
@@ -43,7 +45,9 @@ jobs: | |
rust_toolchain_version: ["nightly"] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Use shared Rust toolchain setting up steps | ||
uses: ./.github/actions/toolchain-shared | ||
|
@@ -68,8 +72,10 @@ jobs: | |
ocaml_version: ["4.14"] | ||
os: ["ubuntu-latest"] | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/[email protected] | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Use shared Rust toolchain setting up steps | ||
uses: ./.github/actions/toolchain-shared | ||
|
@@ -86,23 +92,6 @@ jobs: | |
# FIXME: 0.39.0 makes the CI fail | ||
npm install -g [email protected] | ||
# TODO: Remove debug logging | ||
- name: Echo tollchain version and environment | ||
run: | | ||
rustc --version | ||
echo "" | ||
cargo --version | ||
echo "" | ||
echo $GITHUB_PATH | ||
echo "" | ||
echo $PATH | ||
echo "" | ||
echo $CARGO_HOME | ||
echo "" | ||
cat rust-toolchain | ||
echo "" | ||
env | ||
# | ||
# Doc & Spec | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,9 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Use shared Rust toolchain setting up steps | ||
uses: ./.github/actions/toolchain-shared | ||
|