Skip to content

Commit

Permalink
avoid clearing the ssj checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 28, 2024
1 parent 73d4784 commit 125c63f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,6 @@ jobs:
- name: Setup Cairo Native
run: sudo ./scripts/setup_cairo_native.sh

# Add this step to verify the file exists
- name: Verify libcairo_native_runtime.a
run: |
ls -l libcairo_native_runtime.a || echo "File not found"
pwd
- name: Set Environment Variables
run: |
echo "MLIR_SYS_190_PREFIX=/usr/lib/llvm-19/" >> $GITHUB_ENV
Expand All @@ -86,6 +80,7 @@ jobs:
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
Expand All @@ -95,11 +90,10 @@ jobs:
sparse-checkout-cone-mode: false
path: skip-file

- name: Replace the skip files
run: mv skip-file/blockchain-tests-skip.yml blockchain-tests-skip.yml

- name: Setup
- 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
Expand All @@ -122,6 +116,12 @@ jobs:
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
run: |
set -o pipefail
Expand Down

0 comments on commit 125c63f

Please sign in to comment.