From 0f346991e4950136da1d809484433030f3f4ccb3 Mon Sep 17 00:00:00 2001 From: David Adam Date: Wed, 12 Feb 2025 08:41:40 +0800 Subject: [PATCH] Revert "CI: Use renamed test target" CI targets the GNUmakefile in the build root, which is probably worth keeping working. This reverts commit 3469fd25ec250d039a48a20fe9a6822f3f9af960. --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 79342973a..099107700 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ jobs: make VERBOSE=1 - name: make fish_run_tests run: | - make VERBOSE=1 fish_run_tests + make VERBOSE=1 test ubuntu-32bit-static-pcre2: @@ -57,7 +57,7 @@ jobs: make VERBOSE=1 - name: make fish_run_tests run: | - make VERBOSE=1 fish_run_tests + make VERBOSE=1 test ubuntu-asan: @@ -107,7 +107,7 @@ jobs: llvm_version=$(clang --version | awk 'NR==1 { split($NF, version, "."); print version[1] }') export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-$llvm_version export LSAN_OPTIONS="$LSAN_OPTIONS:suppressions=$PWD/build_tools/lsan_suppressions.txt" - make VERBOSE=1 fish_run_tests + make VERBOSE=1 test # Our clang++ tsan builds are not recognizing safe rust patterns (such as the fact that Drop # cannot be called while a thread is using the object in question). Rust has its own way of @@ -163,4 +163,4 @@ jobs: make VERBOSE=1 - name: make fish_run_tests run: | - make VERBOSE=1 fish_run_tests + make VERBOSE=1 test