Some checks failed
Tests / 64 bit versions total: 7949, passed: 7949
Tests / Debug total: 7947, passed: 7947
Tests / SIMD fallback total: 7949, passed: 7949
Tests / Release [clang] total: 7949, passed: 7949
Clang |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / Release [gcc] total: 7949, passed: 7949
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / Release [clang,aarch64] total: 5268, passed: 5268
weaselab/conflict-set/pipeline/head There was a failure building this commit
34 lines
1.2 KiB
Bash
Executable File
34 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
umask 022
|
|
|
|
SRC_DIR="${0%/*}"
|
|
BUILD_ARM="$(mktemp -d -t conflict-set-arm)"
|
|
BUILD_X86="$(mktemp -d -t conflict-set-x86)"
|
|
|
|
cmake_args=(-DCMAKE_CXX_FLAGS=-DNVALGRIND -DCPACK_PACKAGING_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm/bin/clang++)
|
|
|
|
cmake -S"$SRC_DIR" -B"$BUILD_ARM" -DCMAKE_OSX_ARCHITECTURES=arm64 "${cmake_args[@]}"
|
|
cmake --build "$BUILD_ARM" --target conflict-set --target conflict-set-static
|
|
|
|
cmake -S"$SRC_DIR" -B"$BUILD_X86" -DCMAKE_OSX_ARCHITECTURES=x86_64 "${cmake_args[@]}"
|
|
cmake --build "$BUILD_X86" --target conflict-set --target conflict-set-static
|
|
|
|
VERSION="$(cat "$BUILD_ARM/version.txt")"
|
|
|
|
lipo -create "$BUILD_ARM/radix_tree/libconflict-set.$VERSION.dylib" "$BUILD_X86/radix_tree/libconflict-set.$VERSION.dylib" -output "libconflict-set.$VERSION.dylib.tmp"
|
|
lipo -create "$BUILD_ARM"/libconflict-set-static.a "$BUILD_X86"/libconflict-set-static.a -output libconflict-set-static.a.tmp
|
|
|
|
mv "libconflict-set.$VERSION.dylib.tmp" "$BUILD_ARM/radix_tree/libconflict-set.$VERSION.dylib"
|
|
mv libconflict-set-static.a.tmp "$BUILD_ARM/libconflict-set-static.a"
|
|
|
|
pushd "$BUILD_ARM"
|
|
cpack -G productbuild
|
|
popd
|
|
|
|
mv "$BUILD_ARM/conflict-set-$VERSION-Darwin.pkg" .
|
|
|
|
rm -rf "$BUILD_ARM" "$BUILD_X86"
|