Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 80471c3

Browse files
authoredMar 14, 2025··
Merge branch 'master' into remove-build-lemmas
2 parents 23152bc + 0a235d1 commit 80471c3

File tree

52 files changed

+1041
-3142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1041
-3142
lines changed
 

‎.github/workflows/test-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
if [ ${{ matrix.backend }} == 'legacy' ]; then
9595
TEST_ARGS+=' --no-use-booster --numprocesses=6'
9696
else
97-
TEST_ARGS+=' --numprocesses=4'
97+
TEST_ARGS+=' --numprocesses=3'
9898
fi
9999
docker exec --user github-user kontrol-ci-integration-${GITHUB_SHA} make cov-integration TEST_ARGS="${TEST_ARGS}"
100100
- name: 'Tear down Docker'
@@ -214,7 +214,7 @@ jobs:
214214
strategy:
215215
fail-fast: false
216216
matrix:
217-
runner: [ubuntu-latest, macos-13, MacM1] # MacM1 is self-hosted
217+
runner: [normal, macos-13, MacM1] # MacM1 / normal are self-hosted,
218218
runs-on: ${{ matrix.runner }}
219219
timeout-minutes: 60
220220
steps:

‎.github/workflows/update-expected-output.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
docker exec -u github-user kontrol-ci-integration-${GITHUB_SHA} /bin/bash -c 'CXX=clang++-14 poetry run kdist --verbose build -j`nproc` evm-semantics.haskell kontrol.foundry'
2929
- name: 'Run integration tests'
3030
run: |
31-
TEST_ARGS="--maxfail=1000 --numprocesses=4 --update-expected-output --force-sequential -vv"
31+
TEST_ARGS="--maxfail=1000 --numprocesses=2 --update-expected-output --force-sequential -vv"
3232
docker exec --user github-user kontrol-ci-integration-${GITHUB_SHA} bash -c "make cov-integration TEST_ARGS='${TEST_ARGS} -k \"not (test_kontrol_cse or test_foundry_minimize_proof or test_kontrol_end_to_end)\"' || true"
3333
docker exec --user github-user kontrol-ci-integration-${GITHUB_SHA} bash -c "make cov-integration TEST_ARGS='${TEST_ARGS} -k \"test_kontrol_cse or test_foundry_minimize_proof\"' || true"
3434
docker exec --user github-user kontrol-ci-integration-${GITHUB_SHA} bash -c "make cov-integration TEST_ARGS='${TEST_ARGS} -k \"test_kontrol_end_to_end\"' || true"

0 commit comments

Comments
 (0)
Please sign in to comment.