summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-03-28 22:48:24 +0800
committerJia Tan <jiat0218@gmail.com>2023-03-29 23:46:43 +0800
commitd0faa85df5a5d253a4625d45313cf5e9277e6cd2 (patch)
treee9419233898176c7065972e565607de93b000c3b
parent8be5cc3b1359d88b4b30a39067466c0ae0bfbc4d (diff)
downloadxz-d0faa85df5a5d253a4625d45313cf5e9277e6cd2.tar.gz
CI: Tests for disabling threading on CMake builds.
-rw-r--r--.github/workflows/ci.yml3
-rwxr-xr-xbuild-aux/ci_build.sh4
2 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1691b5a..823f543 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -89,12 +89,9 @@ jobs:
- name: Test without decoders
run: ./build-aux/ci_build.sh -b ${{ matrix.build_system }} -d decoders,shared -p test -n no_decoders
- # Our CMake build cannot disable threads yet.
- name: Build without threads
- if: ${{ matrix.build_system == 'autotools' }}
run: ./build-aux/ci_build.sh -b ${{ matrix.build_system }} -d threads,shared -p build
- name: Test without threads
- if: ${{ matrix.build_system == 'autotools' }}
run: ./build-aux/ci_build.sh -b ${{ matrix.build_system }} -d threads,shared -p test -n no_threads
- name: Build without BCJ filters
diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh
index 7fb180c..724e66d 100755
--- a/build-aux/ci_build.sh
+++ b/build-aux/ci_build.sh
@@ -202,13 +202,13 @@ then
make
;;
cmake)
- # The CMake build currently does not support disabling
- # threading.
cd "$DEST_DIR"
add_to_filter_list "$BCJ" ";x86;powerpc;ia64;arm;armthumb;arm64;sparc"
add_to_filter_list "$DELTA" ";delta"
+ add_extra_option "$THREADS" "-DENABLE_THREADS=ON" "-DENABLE_THREADS=OFF"
+
# Disable MicroLZMA if encoders are not configured.
add_extra_option "$ENCODERS" "-DENCODERS=$FILTER_LIST" "-DENCODERS= -DMICROLZMA_ENCODER=OFF"