Skip to content

cmake@macos: Cocoa framework is now linked into agge library #29

cmake@macos: Cocoa framework is now linked into agge library

cmake@macos: Cocoa framework is now linked into agge library #29

Workflow file for this run

name: Build / Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Configure CMake
run: cmake -B ${{github.workspace}}/_build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/_build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/_build
run: ctest -C ${{env.BUILD_TYPE}} -VV