Skip to content

Commit 885bfa6

Browse files
committed
Fix workflows [TO SQUASH]
1 parent 278ffa8 commit 885bfa6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,16 @@ jobs:
8282
- name: Running CMake (Tarantool)
8383
run: |
8484
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
85-
-DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON \
86-
-DENABLE_FUZZER=ON \
85+
-DCMAKE_BUILD_TYPE=Debug -DENABLE_FUZZER=ON \
8786
-G Ninja -S . -B build
8887
env:
8988
LUA_C_API_TESTS_GIT_TAG: ${{ github.event.pull_request.head.sha || github.sha }}
9089
if: ${{ matrix.LUA == 'tarantool' }}
9190

9291
- name: Building
93-
run: cmake --build build --parallel $(nproc)
92+
run: |
93+
cmake --build build --parallel $(nproc) \
94+
--target ${{ matrix.LUA == 'tarantool' && 'lua-c-api-tests' || 'all' }}
9495
9596
- name: Testing
9697
run: cmake --build build --target test

0 commit comments

Comments
 (0)