Skip to content

Commit

Permalink
Test universalized build job.
Browse files Browse the repository at this point in the history
  • Loading branch information
aliddell committed Jul 11, 2024
1 parent 1d589db commit a5fd1be
Showing 1 changed file with 90 additions and 20 deletions.
110 changes: 90 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,83 @@ name: Build

on:
push:
branches: [ "main" ]
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
build:
# windows-and-linux-build:
# strategy:
# matrix:
# build_type:
# - "Debug"
# - "Release"
# platform:
# - "windows-latest"
# - "ubuntu-latest"
# include:
# - platform: "windows-latest"
# vcpkg_triplet: "x64-windows-static"
# - platform: "ubuntu-latest"
# vcpkg_triplet: "x64-linux"
#
# runs-on: ${{ matrix.platform }}
#
# permissions:
# actions: write
#
# steps:
# - name: Cancel Previous Runs
# uses: styfle/[email protected]
# with:
# access_token: ${{ github.token }}
#
# - uses: actions/checkout@v3
# with:
# submodules: true
#
# - name: Install vcpkg
# run: |
# git clone https://github.com/microsoft/vcpkg.git
# cd vcpkg && ./bootstrap-vcpkg.sh
# echo "VCPKG_ROOT=${{github.workspace}}/vcpkg" >> $GITHUB_ENV
# echo "${{github.workspace}}/vcpkg" >> $GITHUB_PATH
# ./vcpkg integrate install
# shell: bash
#
# - name: CMake
# run: |
# cmake --preset=default -DVCPKG_TARGET_TRIPLET=${{matrix.vcpkg_triplet}}
# cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}}
#
# - name: Build
# run: |
# cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
# cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C ${{matrix.build_type}} -G ZIP
#
# - uses: actions/upload-artifact@v3
# with:
# name: ${{matrix.platform}} ${{matrix.build_type}} binaries
# path: ${{github.workspace}}/*.zip

mac-build:
strategy:
matrix:
build_type: [ Debug, Release ]
platform: [ "windows-latest", "ubuntu-latest", "macos-latest" ]
include:
- platform: "windows-latest"
vcpkg_triplet: "x64-windows-static"
- platform: "ubuntu-latest"
vcpkg_triplet: "x64-linux"
- platform: "macos-latest"
vcpkg_triplet: "arm64-osx"

runs-on: ${{ matrix.platform }}
build_type:
- "Debug"
- "Release"
# vcpkg_triplet:
# - "x64-osx"
# - "arm64-osx"
# include:
# - vcpkg_triplet: "x64-osx"
# arch: "x86_64"
# - vcpkg_triplet: "arm64-osx"
# arch: "arm64"

runs-on: "macos-latest"

permissions:
actions: write
Expand All @@ -42,17 +102,27 @@ jobs:
./vcpkg integrate install
shell: bash

- name: CMake
- name: Build for x64
run: |
cmake --preset=default -DVCPKG_TARGET_TRIPLET=x64-osx -DVCPKG_INSTALLED_DIR=${{github.workspace}}/vcpkg-x64 -B ${{github.workspace}}/build-x64 -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_OSX_ARCHITECTURES="x86_64" -DNOTEST=1
cmake --build ${{github.workspace}}/build-x64 --config ${{matrix.build_type}}
- name: Build for arm64
run: |
cmake --preset=default -DVCPKG_TARGET_TRIPLET=arm64-osx -DVCPKG_INSTALLED_DIR=${{github.workspace}}/vcpkg-arm64 -B ${{github.workspace}}/build-arm64 -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_OSX_ARCHITECTURES="arm64" -DNOTEST=1
cmake --build ${{github.workspace}}/build-arm64 --config ${{matrix.build_type}}
- name: Create a universal binary
run: |
cmake --preset=default -DVCPKG_TARGET_TRIPLET=${{matrix.vcpkg_triplet}}
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
cp -r ${{github.workspace}}/build-x64 ${{github.workspace}}/build
cd ${{github.workspace}}/build
for lib in `find . -type f \( -name "*.so" -o -name "*.a" \)`; do lipo -create ${{github.workspace}}/build-x64/${lib} ${{github.workspace}}/build-arm64/${lib} -output ${{github.workspace}}/build/$lib; done
- name: Build
- name: Pack up
run: |
cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C ${{matrix.build_type}} -G ZIP
- uses: actions/upload-artifact@v3
with:
name: ${{matrix.platform}} ${{matrix.build_type}} binaries
path: ${{github.workspace}}/*.zip
name: macos-latest ${{matrix.build_type}} binaries
path: ${{github.workspace}}/*.zip

0 comments on commit a5fd1be

Please sign in to comment.