All checks were successful
Tests / Clang total: 1420, passed: 1420
Clang |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / Debug total: 1418, passed: 1418
Tests / SIMD fallback total: 1420, passed: 1420
Tests / Release [gcc] total: 1420, passed: 1420
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 1057, passed: 1057
Tests / Coverage total: 1067, passed: 1067
Code Coverage #### Project Overview
No changes detected, that affect the code coverage.
* Line Coverage: 99.34% (1817/1829)
* Branch Coverage: 67.49% (1503/2227)
* Complexity Density: 0.00
* Lines of Code: 1829
#### Quality Gates Summary
Output truncated.
weaselab/conflict-set/pipeline/head This commit looks good
The default segfaults now for some reason
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 -DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm/bin/clang++ -DCPACK_PACKAGING_INSTALL_PREFIX=/usr/local)
|
|
|
|
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"
|