We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 278ffa8 commit 885bfa6Copy full SHA for 885bfa6
.github/workflows/test.yaml
@@ -82,15 +82,16 @@ jobs:
82
- name: Running CMake (Tarantool)
83
run: |
84
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
85
- -DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON \
86
- -DENABLE_FUZZER=ON \
+ -DCMAKE_BUILD_TYPE=Debug -DENABLE_FUZZER=ON \
87
-G Ninja -S . -B build
88
env:
89
LUA_C_API_TESTS_GIT_TAG: ${{ github.event.pull_request.head.sha || github.sha }}
90
if: ${{ matrix.LUA == 'tarantool' }}
91
92
- name: Building
93
- run: cmake --build build --parallel $(nproc)
+ run: |
+ cmake --build build --parallel $(nproc) \
94
+ --target ${{ matrix.LUA == 'tarantool' && 'lua-c-api-tests' || 'all' }}
95
96
- name: Testing
97
run: cmake --build build --target test
0 commit comments