Skip to content

Commit 405a83f

Browse files
committed
ci workflow add verbose flag
1 parent 0b6dff5 commit 405a83f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# cmake should figure out OS and ARCH automatically when running build.sh (but we need mvn compile for it)
2323
run: |
2424
mvn compile
25-
.github/build.sh
25+
.github/build.sh -DLLAMA_VERBOSE=ON
2626
- name: Download model
2727
run: curl -L ${MODEL_URL} --create-dirs -o models/${MODEL_NAME}
2828
- name: Run tests
@@ -42,11 +42,11 @@ jobs:
4242
target:
4343
- {
4444
runner: macos-13,
45-
cmake: '-DLLAMA_METAL=OFF'
45+
cmake: '-DLLAMA_METAL=OFF -DLLAMA_VERBOSE=ON'
4646
}
4747
- {
4848
runner: macos-14,
49-
cmake: '-DLLAMA_METAL_EMBED_LIBRARY=ON -DLLAMA_METAL=OFF'
49+
cmake: '-DLLAMA_METAL_EMBED_LIBRARY=ON -DLLAMA_METAL=OFF -DLLAMA_VERBOSE=ON'
5050
}
5151
steps:
5252
- uses: actions/checkout@v4
@@ -75,7 +75,7 @@ jobs:
7575
- name: Build libraries
7676
run: |
7777
mvn compile
78-
.github\build.bat
78+
.github\build.bat -DLLAMA_VERBOSE=ON
7979
- name: Download model
8080
run: curl -L $env:MODEL_URL --create-dirs -o models/$env:MODEL_NAME
8181
- name: Run tests

0 commit comments

Comments
 (0)