Skip to content

Commit 66428a8

Browse files
committed
actions please
1 parent 5b63e8d commit 66428a8

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/execution.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Execution
22

33
on:
44
push:
5-
branches: [ main, dev, staging ]
5+
branches: [ main, staging ]
66
pull_request:
7-
branches: [ main, dev, staging ]
7+
branches: [ main, staging ]
88

99
jobs:
1010
build:
@@ -29,7 +29,8 @@ jobs:
2929
version: "14.0"
3030
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
3131
- run: npm install --ignore-scripts
32+
# - run: "./lib/install.bat"
3233
- run: cmake . -B build
33-
- run: cmake --build build
34+
# - run: cmake --build build
3435
- run: npm run build-syntax
3536
- run: node ./compiler/test.js --action

lib/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,9 @@ set(LLVM_BUILD_DOCS OFF)
8181
set(LLVM_ENABLE_DOXYGEN OFF)
8282
set(LLVM_ENABLE_SPHINX OFF)
8383

84-
add_subdirectory(llvm/llvm)
84+
add_subdirectory("llvm/llvm")
85+
86+
# install(
87+
# TARGETS llvm/llvm
88+
# DESTINATION "${PROJECT_SOURCE_DIR}/install/"
89+
# )

0 commit comments

Comments
 (0)