Skip to content

Commit

Permalink
fix runtime location
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 28, 2024
1 parent 490ea1b commit 73d4784
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ 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 Down
1 change: 1 addition & 0 deletions scripts/setup_cairo_native.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ install_cairo_native_runtime() {
pushd ./cairo_native || exit 1
make deps
make runtime
cp libcairo_native_runtime.a ../libcairo_native_runtime.a
popd || exit 1

rm -rf ./cairo_native
Expand Down

0 comments on commit 73d4784

Please sign in to comment.