2 # SPDX-License-Identifier: 0BSD
4 #############################################################################
6 # Script meant to be used for Continuous Integration automation for POSIX
7 # systems. On GitHub, this is used by Ubuntu and MacOS builds.
9 #############################################################################
13 #############################################################################
20 -c [crc32|crc64|sha256]
21 -d [encoders|decoders|bcj|delta|threads|shared|nls|small|clmul|sandbox]
25 -n [ARTIFACTS_DIR_NAME]
29 # Absolute path of script directory
30 ABS_DIR
=$
(cd -- "$(dirname -- "$0")" && pwd)
32 # Default CLI option values
34 BUILD_SYSTEM
="autotools"
35 CHECK_TYPE
="crc32,crc64,sha256"
42 NATIVE_LANG_SUPPORT
="y"
46 SRC_DIR
="$ABS_DIR/../"
47 DEST_DIR
="$SRC_DIR/../xz_build"
49 ARTIFACTS_DIR_NAME
="output"
51 [[ -z ${CPU_COUNT} ]] && { CPU_COUNT
=$
(nproc
2>/dev
/null || sysctl
-n hw.activecpu
); }
52 [[ -z ${MAKEFLAGS} ]] && export MAKEFLAGS="-j${CPU_COUNT} -l${CPU_COUNT}"
53 [[ -z ${CFLAGS} ]] && export CFLAGS="-O2"
59 while getopts a:b:c:d:l:m:n:s:p:f:w:h opt; do
60 # b option can have either value "autotools
" OR "cmake
"
67 AUTOGEN_FLAGS="$OPTARG"
73 *) echo "Invalid build system
: $OPTARG"; exit 1;;
75 BUILD_SYSTEM="$OPTARG"
77 c) CHECK_TYPE="$OPTARG"
79 # d options can be a comma separated list of things to disable at
82 for disable_arg in $(echo "$OPTARG" | sed "s
/,/ /g
"); do
83 case "$disable_arg" in
84 encoders) ENCODERS="n
" ;;
85 decoders) DECODERS="n
" ;;
88 threads) THREADS="n
" ;;
90 nls) NATIVE_LANG_SUPPORT="n
";;
93 sandbox) SANDBOX="n
";;
94 *) echo "Invalid disable value
: $disable_arg"; exit 1 ;;
104 n) ARTIFACTS_DIR_NAME="$OPTARG"
124 # These two functions essentially implement the ternary "?
" operator.
126 # First argument is option value ("y
" or "n
")
127 # Second argument is option to set if "y
"
128 # Third argument is option to set if "n
"
131 EXTRA_OPTIONS="$EXTRA_OPTIONS $2"
133 EXTRA_OPTIONS="$EXTRA_OPTIONS $3"
138 add_to_filter_list() {
139 # First argument is option value ("y
" or "n
")
140 # Second argument is option to set if "y
"
143 FILTER_LIST="$FILTER_LIST$2"
152 if [ "$PHASE" = "all
" ] || [ "$PHASE" = "build
" ]
154 # Checksum options should be specified differently based on the
155 # build system. It must be calculated here since we won't know
156 # the build system used until all args have been parsed.
157 # Autotools - comma separated
158 # CMake - semi-colon separated
159 if [ "$BUILD_SYSTEM" = "autotools
" ]
167 for crc in $(echo "$CHECK_TYPE" | sed "s
/,/ /g
"); do
169 # Remove "crc32
" from cmake build, if specified.
171 if [ "$BUILD_SYSTEM" = "cmake
" ]
178 *) echo "Invalid check
type: $crc"; exit 1 ;;
181 CHECK_TYPE_TEMP="$CHECK_TYPE_TEMP$SEP$crc"
184 # Remove the first character from $CHECK_TYPE_TEMP since it will
185 # always be the delimiter.
186 CHECK_TYPE="${CHECK_TYPE_TEMP:1}"
188 FILTER_LIST="lzma1
$SEP"lzma2
190 # Build based on arguments
193 # Generate configure option values
196 case $BUILD_SYSTEM in
200 # Run autogen.sh script if not already run
201 if [ ! -f configure ]
203 ./autogen.sh "$AUTOGEN_FLAGS"
208 add_to_filter_list "$BCJ" ",x86
,powerpc
,ia64
,arm
,armthumb
,arm64
,sparc
,riscv
"
209 add_to_filter_list "$DELTA" ",delta
"
211 add_extra_option "$ENCODERS" "--enable-encoders=$FILTER_LIST" "--disable-encoders"
212 add_extra_option "$DECODERS" "--enable-decoders=$FILTER_LIST" "--disable-decoders"
213 add_extra_option "$THREADS" "" "--disable-threads"
214 add_extra_option "$SHARED" "" "--disable-shared"
215 add_extra_option "$NATIVE_LANG_SUPPORT" "" "--disable-nls"
216 add_extra_option "$SMALL" "--enable-small" ""
217 add_extra_option "$CLMUL" "" "--disable-clmul-crc"
218 add_extra_option "$SANDBOX" "" "--enable-sandbox=no
"
220 # Run configure script
221 "$SRC_DIR"/configure --enable-werror --enable-checks="$CHECK_TYPE" $EXTRA_OPTIONS --config-cache
229 add_to_filter_list "$BCJ" ";x86
;powerpc
;ia64
;arm
;armthumb
;arm64
;sparc
;riscv
"
230 add_to_filter_list "$DELTA" ";delta
"
232 add_extra_option "$THREADS" "-DENABLE_THREADS=ON
" "-DENABLE_THREADS=OFF
"
234 # Disable MicroLZMA if encoders are not configured.
235 add_extra_option "$ENCODERS" "-DENCODERS=$FILTER_LIST" "-DENCODERS= -DMICROLZMA_ENCODER=OFF
"
237 # Disable MicroLZMA and lzip decoders if decoders are not configured.
238 add_extra_option "$DECODERS" "-DDECODERS=$FILTER_LIST" "-DDECODERS= -DMICROLZMA_DECODER=OFF
-DLZIP_DECODER=OFF
"
240 # CMake disables the shared library by default.
241 add_extra_option "$SHARED" "-DBUILD_SHARED_LIBS=ON
" ""
243 add_extra_option "$SMALL" "-DHAVE_SMALL=ON
" ""
245 if test -n "$CC" ; then
246 EXTRA_OPTIONS="$EXTRA_OPTIONS -DCMAKE_C_COMPILER=$CC"
249 # Remove old cache file to clear previous settings.
250 rm -f "CMakeCache.txt
"
251 cmake "$SRC_DIR/CMakeLists.txt
" -B "$DEST_DIR" $EXTRA_OPTIONS -DADDITIONAL_CHECK_TYPES="$CHECK_TYPE" -G "Unix Makefiles
"
252 cmake --build "$DEST_DIR"
262 if [ "$PHASE" = "all
" ] || [ "$PHASE" = "test" ]
264 case $BUILD_SYSTEM in
267 # If the tests fail, copy the test logs into the artifacts folder
268 if make check VERBOSE=1 LOG_COMPILER="$WRAPPER"
272 mkdir -p "$SRC_DIR/build-aux
/artifacts
/$ARTIFACTS_DIR_NAME"
273 cp ./tests/*.log "$SRC_DIR/build-aux
/artifacts
/$ARTIFACTS_DIR_NAME"
279 if ${WRAPPER} make test
283 mkdir -p "$SRC_DIR/build-aux
/artifacts
/$ARTIFACTS_DIR_NAME"
284 cp ./Testing/Temporary/*.log "$SRC_DIR/build-aux
/artifacts
/$ARTIFACTS_DIR_NAME"