mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 09:16:00 +00:00
Disable sccache to fix Windows builds (#7867)
Quick fix to unblock Windows CI. I have a hammer and I'm using it.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
[env]
|
[env]
|
||||||
# Set the number of arenas to 16 when using jemalloc.
|
# Set the number of arenas to 16 when using jemalloc.
|
||||||
JEMALLOC_SYS_WITH_MALLOC_CONF = "abort_conf:true,narenas:16"
|
JEMALLOC_SYS_WITH_MALLOC_CONF = "abort_conf:true,narenas:16"
|
||||||
|
|
||||||
|
# FIXME: sccache temporarily disabled due to Windows issues
|
||||||
|
[build]
|
||||||
|
rustc-wrapper = ""
|
||||||
|
|||||||
15
.github/workflows/test-suite.yml
vendored
15
.github/workflows/test-suite.yml
vendored
@@ -28,6 +28,9 @@ env:
|
|||||||
CARGO_INCREMENTAL: 0
|
CARGO_INCREMENTAL: 0
|
||||||
# Enable portable to prevent issues with caching `blst` for the wrong CPU type
|
# Enable portable to prevent issues with caching `blst` for the wrong CPU type
|
||||||
TEST_FEATURES: portable
|
TEST_FEATURES: portable
|
||||||
|
# FIXME: sccache disabled
|
||||||
|
RUSTC_WRAPPER: ""
|
||||||
|
SCCACHE_CACHE_SIZE: 0
|
||||||
jobs:
|
jobs:
|
||||||
check-labels:
|
check-labels:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -104,7 +107,7 @@ jobs:
|
|||||||
- name: Run tests in release
|
- name: Run tests in release
|
||||||
run: make nextest-release
|
run: make nextest-release
|
||||||
- name: Show cache stats
|
- name: Show cache stats
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'true'
|
if: env.SELF_HOSTED_RUNNERS == 'true' && false
|
||||||
run: sccache --show-stats
|
run: sccache --show-stats
|
||||||
release-tests-windows:
|
release-tests-windows:
|
||||||
name: release-tests-windows
|
name: release-tests-windows
|
||||||
@@ -135,7 +138,7 @@ jobs:
|
|||||||
- name: Run tests in release
|
- name: Run tests in release
|
||||||
run: make nextest-release
|
run: make nextest-release
|
||||||
- name: Show cache stats
|
- name: Show cache stats
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'true'
|
if: env.SELF_HOSTED_RUNNERS == 'true' && false
|
||||||
run: sccache --show-stats
|
run: sccache --show-stats
|
||||||
beacon-chain-tests:
|
beacon-chain-tests:
|
||||||
name: beacon-chain-tests
|
name: beacon-chain-tests
|
||||||
@@ -157,7 +160,7 @@ jobs:
|
|||||||
- name: Run beacon_chain tests for all known forks
|
- name: Run beacon_chain tests for all known forks
|
||||||
run: make test-beacon-chain
|
run: make test-beacon-chain
|
||||||
- name: Show cache stats
|
- name: Show cache stats
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'true'
|
if: env.SELF_HOSTED_RUNNERS == 'true' && false
|
||||||
run: sccache --show-stats
|
run: sccache --show-stats
|
||||||
http-api-tests:
|
http-api-tests:
|
||||||
name: http-api-tests
|
name: http-api-tests
|
||||||
@@ -179,7 +182,7 @@ jobs:
|
|||||||
- name: Run http_api tests for all recent forks
|
- name: Run http_api tests for all recent forks
|
||||||
run: make test-http-api
|
run: make test-http-api
|
||||||
- name: Show cache stats
|
- name: Show cache stats
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'true'
|
if: env.SELF_HOSTED_RUNNERS == 'true' && false
|
||||||
run: sccache --show-stats
|
run: sccache --show-stats
|
||||||
op-pool-tests:
|
op-pool-tests:
|
||||||
name: op-pool-tests
|
name: op-pool-tests
|
||||||
@@ -267,7 +270,7 @@ jobs:
|
|||||||
- name: Run tests in debug
|
- name: Run tests in debug
|
||||||
run: make nextest-debug
|
run: make nextest-debug
|
||||||
- name: Show cache stats
|
- name: Show cache stats
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'true'
|
if: env.SELF_HOSTED_RUNNERS == 'true' && false
|
||||||
run: sccache --show-stats
|
run: sccache --show-stats
|
||||||
state-transition-vectors-ubuntu:
|
state-transition-vectors-ubuntu:
|
||||||
name: state-transition-vectors-ubuntu
|
name: state-transition-vectors-ubuntu
|
||||||
@@ -303,7 +306,7 @@ jobs:
|
|||||||
- name: Run consensus-spec-tests with blst and fake_crypto
|
- name: Run consensus-spec-tests with blst and fake_crypto
|
||||||
run: make nextest-ef
|
run: make nextest-ef
|
||||||
- name: Show cache stats
|
- name: Show cache stats
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'true'
|
if: env.SELF_HOSTED_RUNNERS == 'true' && false
|
||||||
run: sccache --show-stats
|
run: sccache --show-stats
|
||||||
basic-simulator-ubuntu:
|
basic-simulator-ubuntu:
|
||||||
name: basic-simulator-ubuntu
|
name: basic-simulator-ubuntu
|
||||||
|
|||||||
Reference in New Issue
Block a user