dev: use native in ci #2251
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
permissions: read-all | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CI_COMMIT_MESSAGE: CI Formatting Auto Commit | |
CI_COMMIT_AUTHOR: ${{ github.event.repository.name }} CI | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Scarb | |
uses: software-mansion/setup-scarb@v1 | |
- name: Build contracts | |
run: scarb build -p contracts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: kakarot-ssj-build | |
path: target/dev | |
tests: | |
# trunk-ignore(actionlint/runner-label) | |
runs-on: ubuntu-latest-16-cores | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: foundry-rs/setup-snfoundry@v3 | |
- uses: software-mansion/setup-scarb@v1 | |
- run: scarb fmt --check | |
- run: scarb test | |
ef-tests: | |
# trunk-ignore(actionlint/runner-label) | |
runs-on: ubuntu-latest-16-cores | |
needs: [build] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache cairo-native setup | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
./libcairo_native_runtime.a | |
key: | |
${{ runner.os }}-cairo-native-${{ hashFiles('**/Cargo.lock', | |
'scripts/setup_cairo_native.sh') }} | |
- name: Make setup script executable | |
run: chmod +x ./scripts/setup_cairo_native.sh | |
- name: Setup Cairo Native | |
run: sudo ./scripts/setup_cairo_native.sh | |
- name: Set Environment Variables | |
run: | | |
echo "MLIR_SYS_190_PREFIX=/usr/lib/llvm-19/" >> $GITHUB_ENV | |
echo "LLVM_SYS_191_PREFIX=/usr/lib/llvm-19/" >> $GITHUB_ENV | |
echo "TABLEGEN_190_PREFIX=/usr/lib/llvm-19/" >> $GITHUB_ENV | |
echo "CAIRO_NATIVE_RUNTIME_LIBRARY=$(pwd)/libcairo_native_runtime.a" >> $GITHUB_ENV | |
- name: Checkout ef-tests | |
uses: actions/checkout@v4 | |
with: | |
repository: kkrt-labs/ef-tests | |
ref: feat/cairo-native | |
path: ef-tests # Check out to a subdirectory to avoid cleaning the kakarot-ssj directory | |
- name: Checkout local skip file | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
blockchain-tests-skip.yml | |
sparse-checkout-cone-mode: false | |
path: skip-file | |
- name: Setup ef-tests | |
run: | | |
mv skip-file/blockchain-tests-skip.yml ef-tests/blockchain-tests-skip.yml | |
cd ef-tests | |
mkdir -p build/common | |
make setup setup-kakarot-v0 | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Download Kakarot-SSJ build artifacts in v1 | |
uses: actions/download-artifact@v3 | |
with: | |
name: kakarot-ssj-build | |
path: ef-tests/build/v1 | |
- name: Move Cairo1Helpers | |
run: | | |
mv ef-tests/build/v1/contracts_Cairo1Helpers.compiled_contract_class.json \ | |
ef-tests/build/common/cairo1_helpers.json | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.14 | |
# Add this step to verify the file exists | |
- name: Verify libcairo_native_runtime.a | |
run: | | |
echo $CAIRO_NATIVE_RUNTIME_LIBRARY | |
ls -l $CAIRO_NATIVE_RUNTIME_LIBRARY | |
- name: Run tests | |
working-directory: ef-tests | |
run: | | |
set -o pipefail | |
RUST_MIN_STACK=1342177280 make ef-test-v1-native | tee data.txt | |
set +o pipefail | |
- name: Retrieve ef-tests execution resources | |
working-directory: ef-tests | |
run: python scripts/compute_resources.py | |
env: | |
KAKAROT_VERSION: v1 | |
- name: Upload resources | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ef-tests/resources | |
name: resources | |
- name: Generate blockchain-tests-skip.yml file | |
if: github.event_name == 'workflow_dispatch' | |
working-directory: ef-tests | |
run: make generate-skip-file | |
- name: Upload skip file | |
if: github.event_name == 'workflow_dispatch' | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ef-tests/blockchain-tests-skip.yml | |
name: blockchain-tests-skip |