Skip to content

Commit 0df7d07

Browse files
committed
Merge branch 'kzg-upgrade' of github.com:jimmygchen/lighthouse into kzg-upgrade
2 parents 30e2b18 + 823ec75 commit 0df7d07

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.cargo/config.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[env]
22
# Set the number of arenas to 16 when using jemalloc.
33
JEMALLOC_SYS_WITH_MALLOC_CONF = "abort_conf:true,narenas:16"
4+
5+
# FIXME: sccache temporarily disabled due to Windows issues
6+
[build]
7+
rustc-wrapper = ""

.github/workflows/test-suite.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ env:
2828
CARGO_INCREMENTAL: 0
2929
# Enable portable to prevent issues with caching `blst` for the wrong CPU type
3030
TEST_FEATURES: portable
31+
# FIXME: sccache disabled
32+
RUSTC_WRAPPER: ""
33+
SCCACHE_CACHE_SIZE: 0
3134
jobs:
3235
check-labels:
3336
runs-on: ubuntu-latest
@@ -104,7 +107,7 @@ jobs:
104107
- name: Run tests in release
105108
run: make nextest-release
106109
- name: Show cache stats
107-
if: env.SELF_HOSTED_RUNNERS == 'true'
110+
if: env.SELF_HOSTED_RUNNERS == 'true' && false
108111
run: sccache --show-stats
109112
release-tests-windows:
110113
name: release-tests-windows
@@ -135,7 +138,7 @@ jobs:
135138
- name: Run tests in release
136139
run: make nextest-release
137140
- name: Show cache stats
138-
if: env.SELF_HOSTED_RUNNERS == 'true'
141+
if: env.SELF_HOSTED_RUNNERS == 'true' && false
139142
run: sccache --show-stats
140143
beacon-chain-tests:
141144
name: beacon-chain-tests
@@ -157,7 +160,7 @@ jobs:
157160
- name: Run beacon_chain tests for all known forks
158161
run: make test-beacon-chain
159162
- name: Show cache stats
160-
if: env.SELF_HOSTED_RUNNERS == 'true'
163+
if: env.SELF_HOSTED_RUNNERS == 'true' && false
161164
run: sccache --show-stats
162165
http-api-tests:
163166
name: http-api-tests
@@ -179,7 +182,7 @@ jobs:
179182
- name: Run http_api tests for all recent forks
180183
run: make test-http-api
181184
- name: Show cache stats
182-
if: env.SELF_HOSTED_RUNNERS == 'true'
185+
if: env.SELF_HOSTED_RUNNERS == 'true' && false
183186
run: sccache --show-stats
184187
op-pool-tests:
185188
name: op-pool-tests
@@ -267,7 +270,7 @@ jobs:
267270
- name: Run tests in debug
268271
run: make nextest-debug
269272
- name: Show cache stats
270-
if: env.SELF_HOSTED_RUNNERS == 'true'
273+
if: env.SELF_HOSTED_RUNNERS == 'true' && false
271274
run: sccache --show-stats
272275
state-transition-vectors-ubuntu:
273276
name: state-transition-vectors-ubuntu
@@ -303,7 +306,7 @@ jobs:
303306
- name: Run consensus-spec-tests with blst and fake_crypto
304307
run: make nextest-ef
305308
- name: Show cache stats
306-
if: env.SELF_HOSTED_RUNNERS == 'true'
309+
if: env.SELF_HOSTED_RUNNERS == 'true' && false
307310
run: sccache --show-stats
308311
basic-simulator-ubuntu:
309312
name: basic-simulator-ubuntu

0 commit comments

Comments
 (0)