05178848e5
## Issue Addressed Closes #3709 ## Proposed Changes Add the job `compile-with-beta-compiler` to `test-suite`. This job has the following steps: 1. Use `actions/checkout@v3`. (Needed to run make in a later step.) 2. Install the dependencies listed in [build from source guide](https://lighthouse-book.sigmaprime.io/installation-source.html). 3. Change the compiler to the current beta version with `rustup override`. 4. Run `make`.
32 lines
793 B
TOML
32 lines
793 B
TOML
status = [
|
|
"cargo-fmt",
|
|
"release-tests-ubuntu",
|
|
"release-tests-windows",
|
|
"debug-tests-ubuntu",
|
|
"state-transition-vectors-ubuntu",
|
|
"ef-tests-ubuntu",
|
|
"dockerfile-ubuntu",
|
|
"eth1-simulator-ubuntu",
|
|
"merge-transition-ubuntu",
|
|
"no-eth1-simulator-ubuntu",
|
|
"check-benchmarks",
|
|
"check-consensus",
|
|
"clippy",
|
|
"arbitrary-check",
|
|
"cargo-audit",
|
|
"cargo-udeps",
|
|
"beacon-chain-tests",
|
|
"op-pool-tests",
|
|
"doppelganger-protection-test",
|
|
"execution-engine-integration-ubuntu",
|
|
"cargo-vendor",
|
|
"check-msrv",
|
|
"slasher-tests",
|
|
"syncing-simulator-ubuntu",
|
|
"disallowed-from-async-lint",
|
|
"compile-with-beta-compiler"
|
|
]
|
|
use_squash_merge = true
|
|
timeout_sec = 10800
|
|
pr_status = ["license/cla", "target-branch-check"]
|