Skip to content

Mac Build Test outside of Nix #983

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 13 commits into
base: master
Choose a base branch
from
15 changes: 15 additions & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,21 @@ jobs:
run: |
docker stop --time=0 kontrol-ci-integration-${GITHUB_SHA}

mac-build-tests:
needs: code-quality-checks
name: 'Mac Build Test'
runs-on: [self-hosted, MacM1]
timeout-minutes: 120
steps:
- name: 'Check out code'
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Build KEVM'
run: |
poetry install
APPLE_SILICON=true CXX=clang poetry run kdist --verbose build -j4 evm-semantics.haskell kontrol.foundry

cse-tests:
needs: code-quality-checks
name: 'CSE Tests'
Expand Down
Loading