Create cmake.yml

This commit is contained in:
ksherlock 2020-12-01 23:05:43 -05:00 committed by GitHub
parent b8cada73e8
commit e8c0080f77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

30
.github/workflows/cmake.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: CMake MacOS 11
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: macos-11.0
steps:
- uses: actions/checkout@v2
- name: Brew
run: brew install ragel
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE