mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
CI: Tests for disabling threading on CMake builds.
This commit is contained in:
parent
8be5cc3b13
commit
d0faa85df5
2 changed files with 2 additions and 5 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue