Skip to content

Commit b4de9bf

Browse files
committed
Rebase main
2 parents 67f5974 + e116487 commit b4de9bf

32 files changed

+3227
-2553
lines changed

.github/workflows/kurtosis_integration.yml

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ on:
66
# Run nightly at 00:00 UTC
77
schedule:
88
- cron: '0 0 * * *'
9+
push:
10+
branches:
11+
- main
12+
pull_request:
13+
branches:
14+
- main
915

1016
jobs:
1117
integration-tests:
@@ -21,18 +27,28 @@ jobs:
2127
with:
2228
toolchain: stable
2329
profile: minimal
30+
31+
- name: Install Foundry
32+
uses: foundry-rs/foundry-toolchain@v1
33+
with:
34+
version: nightly
35+
36+
- name: Install Just
37+
uses: taiki-e/install-action@just
2438

2539
- name: Install Contender
2640
run: |
2741
sudo apt-get update
2842
sudo apt-get install -y libsqlite3-dev libfontconfig1-dev libfontconfig
29-
./scripts/ci/kurtosis.sh install-contender
43+
./scripts/ci/stress.sh install-contender
3044
3145
- name: Install Kurtosis
32-
run: ./scripts/ci/kurtosis.sh install
33-
34-
- name: Deploy Optimism Package
35-
run: ./scripts/ci/kurtosis.sh deploy
46+
run: ./scripts/ci/stress.sh install
47+
48+
- name: Deploy Devnet
49+
run: |
50+
kurtosis analytics disable
51+
just devnet-up
3652
3753
- name: Run Integration Tests
38-
run: ./scripts/ci/kurtosis.sh run
54+
run: just stress-test

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
run: cargo build
2424

2525
- name: Run tests
26-
run: cargo test
26+
run: cargo test -- --test-threads=1

0 commit comments

Comments
 (0)