double the size of the handler and the trampoline #198
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: Build TulipHook | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' # every branch | |
- '!no-build-**' # unless marked as no-build | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: 'Windows' | |
id: win | |
os: windows-latest | |
build_tests: true | |
extra_flags: '-DCMAKE_BUILD_TYPE=Debug' | |
out_paths: './build/src/TulipHook.lib' | |
- name: 'macOS' | |
id: mac | |
os: macos-latest | |
build_tests: true | |
extra_flags: "-DCMAKE_BUILD_TYPE=Debug" | |
out_paths: './build/src/libTulipHook.a' | |
- name: 'Android Armv7' | |
id: android-armv7 | |
os: ubuntu-latest | |
build_tests: false | |
extra_flags: "-DTULIP_DONT_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_LATEST_HOME/build/cmake/android.toolchain.cmake -DANDROID_ABI=armeabi-v7a -DANDROID_PLATFORM=android-25 -DANDROID_ARM_NEON=ON" | |
out_paths: './build/src/libTulipHook.a' | |
name: Build and Test ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
env: | |
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm-cache | |
CMAKE_C_COMPILER_LAUNCHER: sccache | |
CMAKE_CXX_COMPILER_LAUNCHER: sccache | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup MSVC | |
uses: ilammy/[email protected] | |
with: | |
arch: x86 | |
if: matrix.config.id == 'win' | |
# https://github.com/hendrikmuhs/ccache-action/pull/182 | |
- name: Setup sccache | |
uses: chirag-droid/ccache-action@main | |
with: | |
variant: sccache | |
key: ${{ matrix.config.id }}-v1 | |
- name: Install ninja-build tool | |
uses: seanmiddleditch/gha-setup-ninja@v3 | |
if: matrix.config.id != 'win' | |
- name: Configure | |
shell: bash | |
run: cmake -G Ninja -B ./build ${{ matrix.config.extra_flags }} | |
- name: Build | |
shell: bash | |
run: | | |
cmake --build ./build --parallel | |
mkdir ./out | |
cp ${{ matrix.config.out_paths }} ./out | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output-${{ matrix.config.os }} | |
path: ${{ github.workspace }}/out | |
- name: Test | |
run: ctest --test-dir ./build/test --output-on-failure | |
if: matrix.config.build_tests == true |