fix: two small fixes to crash causing bugs #3264
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 Engine macOS | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
env: | |
BUILD_TYPE: Release | |
CCACHE_BASEDIR: ${{ github.workspace }} | |
CCACHE_DIR: "${{ github.workspace }}/.ccache" | |
CCACHE_COMPILERTYPE: clang | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
brew install glfw ccache | |
python -m pip install jinja2 | |
- name: Get timestamp | |
shell: bash | |
id: ccache_vars | |
run: | | |
echo "timestamp=$(date +%s)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: ccache-${{ env.CCACHE_COMPILERTYPE }}-${{ env.BUILD_TYPE }}-${{ github.ref }}-${{ steps.ccache_vars.outputs.timestamp }} | |
restore-keys: | | |
ccache-${{ env.CCACHE_COMPILERTYPE }}-${{ env.BUILD_TYPE }}-${{ github.ref }}- | |
ccache-${{ env.CCACHE_COMPILERTYPE }}-${{ env.BUILD_TYPE }}- | |
ccache-${{ env.CCACHE_COMPILERTYPE }}- | |
ccache- | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGLFW_USE_SUBMODULE=OFF -DBUILD_CORE_SAMPLES=ON -DBUILD_CORE_TESTS=ON -DBUILD_ENGINE_TESTS=ON -DBUILD_ENGINE_SAMPLES=ON -DUSE_CLANG_TIDY=OFF | |
shell: bash | |
- name: CCache Prolog | |
run: |- | |
ccache -s # Print current cache stats | |
ccache -z # Zero cache entry | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all | |
- name: CCache Epilog | |
run: | | |
ccache -s # Print current cache stats | |
- name: Test Core | |
working-directory: ${{github.workspace}}/build/ | |
run: ./cubos-core-tests | |
- name: Test Engine | |
working-directory: ${{github.workspace}}/build/ | |
run: ./cubos-engine-tests |