Skip to content
Snippets Groups Projects
Unverified Commit fc14740f authored by Yaroslav Lobankov's avatar Yaroslav Lobankov
Browse files

make: fix hard-coded compiler version in .test.mk

Remove hard-coded compiler version for the `test-release-asan` target
in the .test.mk file.

NO_DOC=make
NO_TEST=make
NO_CHANGELOG=make

(cherry picked from commit ed35713e)
parent 77fcc44c
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,9 @@ jobs:
- name: Install deps
uses: ./.github/actions/install-deps-debian
- name: test
env:
CC: clang-11
CXX: clang++-11
run: make -f .test.mk test-release-asan
- name: Send VK Teams message on failure
if: failure()
......
......@@ -72,7 +72,6 @@ test-release: build run-luajit-test run-test
# Release ASAN build
.PHONY: test-release-asan
test-release-asan: CMAKE_ENV = CC=clang-11 CXX=clang++-11
# FIBER_STACK_SIZE=640Kb: The default value of fiber stack size
# is 512Kb, but several tests in test/PUC-Rio-Lua-5.1-test suite
# in the LuaJIT repo (e.g. some cases with deep recursion in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment