Skip to content

Commit

Permalink
Use compile.sh in CI, r4
Browse files Browse the repository at this point in the history
  • Loading branch information
leshikus committed Oct 24, 2024
1 parent ba0330f commit 8de4e2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
git apply ../build_tools/patches/*.patch
echo "INFO: Need to rebuild LLVM-MLIR. Previous installation for MLIR not found"
cmake -G Ninja -B _build -S llvm \
cmake -G Ninja -B build -S llvm \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DLLVM_ENABLE_PROJECTS=mlir \
-DLLVM_ENABLE_ASSERTIONS=ON \
Expand All @@ -83,7 +83,7 @@ jobs:
-DLLVM_ENABLE_BINDINGS=OFF \
-DLLVM_ENABLE_ZSTD=OFF \
-DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/mlir
cmake --build _build --target install
cmake --build build --target install
- name: Build IMEX and run lit tests
shell: bash -le {0}
Expand All @@ -94,4 +94,4 @@ jobs:
- name: Build doxygen docs
shell: bash -le {0}
run: |
cmake --build _build --target doc_doxygen
cmake --build build --target doc_doxygen

0 comments on commit 8de4e2f

Please sign in to comment.