RCPP-53 Add a realm::uuid to be constructed with std::array<uint8_t, 16> #94
Workflow file for this run
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: Test vcpkg integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-static: | |
runs-on: ${{ matrix.os }} | |
name: "Static linkage" | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
build_type: [Debug, Release] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: "Set environmental variables" | |
shell: bash | |
run: | | |
echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> $GITHUB_ENV | |
- name: Install dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
ninja-build | |
- name: Setup Ninja | |
if: matrix.os == 'macos-latest' | |
uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Configure and build (macOS) | |
working-directory: ./tests/vcpkg | |
if: matrix.os == 'macos-latest' | |
run: | | |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-osx | |
cd build | |
cmake --build . --config ${{matrix.build_type}} | |
- name: Configure and build (Ubuntu) | |
working-directory: ./tests/vcpkg | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-linux | |
cd build | |
cmake --build . --config ${{matrix.build_type}} | |
- name: Configure and build (Windows) | |
working-directory: ./tests/vcpkg | |
if: matrix.os == 'windows-latest' | |
run: | | |
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-windows-static -DENABLE_STATIC=ON | |
cd build | |
cmake --build . --config ${{matrix.build_type}} | |
- name: Open a tmate debug session | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
timeout-minutes: 15 | |
- name: Run Application (Unix) | |
working-directory: ./tests/vcpkg/build | |
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' | |
run: | | |
./realm_helloworld | |
- name: Run Application (Windows) | |
working-directory: ./tests/vcpkg/build | |
if: matrix.os == 'windows-latest' | |
run: | | |
cd ${{matrix.build_type}} | |
start realm_helloworld.exe | |
build-dynamic: | |
runs-on: ${{ matrix.os }} | |
name: "Dynamic linkage" | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
build_type: [ Debug, Release ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: "Set environmental variables" | |
shell: bash | |
run: | | |
echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> $GITHUB_ENV | |
- name: Install dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
ninja-build | |
- name: Setup Ninja | |
if: matrix.os == 'macos-latest' | |
uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Configure and build (macOS) | |
working-directory: ./tests/vcpkg | |
if: matrix.os == 'macos-latest' | |
run: | | |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-osx-dynamic | |
cd build | |
cmake --build . --config ${{matrix.build_type}} | |
- name: Configure and build (Ubuntu) | |
working-directory: ./tests/vcpkg | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
cmake -GNinja -B build -S . -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-linux-dynamic | |
cd build | |
cmake --build . --config ${{matrix.build_type}} | |
- name: Configure and build (Windows) | |
working-directory: ./tests/vcpkg | |
if: matrix.os == 'windows-latest' | |
run: | | |
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_OVERLAY_PORTS="../../ports" -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVCPKG_TARGET_TRIPLET=x64-windows | |
cd build | |
cmake --build . --config ${{matrix.build_type}} | |
- name: Run Application (Unix) | |
working-directory: ./tests/vcpkg/build | |
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' | |
run: | | |
./realm_helloworld | |
- name: Run Application (Windows) | |
working-directory: ./tests/vcpkg/build | |
if: matrix.os == 'windows-latest' | |
run: | | |
cd ${{matrix.build_type}} | |
start realm_helloworld.exe | |
- name: Open a tmate debug session | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
timeout-minutes: 15 |