Packaging ci env bug fix #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CMake Build | |
on: | |
push: | |
branches: [ "main", "dev" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
env: | |
GCC_MAJOR: 14 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-24.04, macos-latest ] | |
build_type: [ Debug ] | |
c_compiler: [ clang ] | |
include: | |
- os: macos-latest | |
c_compiler: clang | |
cpp_compiler: clang++-18 | |
- os: ubuntu-24.04 | |
c_compiler: clang | |
cpp_compiler: clang++-18 | |
steps: | |
- name: Install Dependencies | |
if: matrix.os == 'macos-latest' | |
run: | | |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=TRUE | |
brew update | |
brew install ninja cmake git gcc@${{ env.GCC_MAJOR }} | |
brew reinstall llvm | |
echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.bash_profile | |
echo 'export PATH="/opt/homebrew/opt/gcc/bin:$PATH"' >> ~/.bash_profile | |
echo 'export PATH="/opt/homebrew/opt/gcc/lib/gcc/${{ env.GCC_MAJOR }}:$PATH"' >> ~/.bash_profile | |
. ~/.bash_profile | |
- uses: actions/checkout@v4 | |
- name: Set reusable strings | |
id: strings | |
shell: bash | |
working-directory: ${{ github.workspace }} | |
run: | | |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" | |
# Set the paths to the GCC include and lib directories on macOS | |
if [ "${{ matrix.os }}" == "macos-latest" ]; then | |
echo "gcc-include-dir=$(./scripts/search.sh "/opt/homebrew/Cellar/gcc/${{ env.GCC_MAJOR }}*/include/c++/${{ env.GCC_MAJOR }}")" >> "$GITHUB_OUTPUT" | |
echo "gcc-sys-include-dir=$(./scripts/search.sh "/opt/homebrew/Cellar/gcc/${{ env.GCC_MAJOR }}*/include/c++/${{ env.GCC_MAJOR }}/*-apple-darwin*")" >> "$GITHUB_OUTPUT" | |
echo "gcc-lib-dir=$(./scripts/search.sh "/opt/homebrew/Cellar/gcc/${{ env.GCC_MAJOR }}*/lib/gcc/current")" >> "$GITHUB_OUTPUT" | |
fi | |
# Build the project | |
- name: Build PrivacyShield | |
if: matrix.os == 'ubuntu-24.04' | |
run: | | |
sudo ./scripts/build.sh | |
- name: Install Blake3 | |
if: matrix.os == 'macos-latest' | |
run: | | |
sudo ./scripts/install-blake3.sh ${{ matrix.c_compiler }} | |
- name: Configure CMake | |
if: matrix.os == 'macos-latest' | |
run: > | |
cmake -B ${{ steps.strings.outputs.build-output-dir }} | |
-DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm/bin/clang++ | |
-DCMAKE_C_COMPILER=/opt/homebrew/opt/llvm/bin/clang | |
-DCMAKE_CXX_FLAGS="-stdlib++-isystem ${{ steps.strings.outputs.gcc-include-dir }} -cxx-isystem ${{ steps.strings.outputs.gcc-sys-include-dir }}" | |
-DCMAKE_EXE_LINKER_FLAGS="-stdlib=libstdc++ -L ${{ steps.strings.outputs.gcc-lib-dir }} -Wl,-rpath,/opt/homebrew/opt/gcc/lib/gcc/current" | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
-S ${{ github.workspace }} -G Ninja | |
# -DCMAKE_CXX_FLAGS="-stdlib=libstdc++ -stdlib++-isystem /opt/homebrew/Cellar/gcc/14.1.0_1/include/c++/14 -cxx-isystem /opt/homebrew/Cellar/gcc/14.1.0_1/include/c++/14/aarch64-apple-darwin23 -L /opt/homebrew/Cellar/gcc/14.1.0_1/lib/gcc/14 -Wl,-rpath,/opt/homebrew/opt/gcc/lib/gcc/current" | |
- name: Build | |
if: matrix.os == 'macos-latest' | |
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} -j 4 | |
# Run Tests | |
- name: Test | |
working-directory: ${{ steps.strings.outputs.build-output-dir }} | |
run: ctest -j 4 |