mirror of
https://github.com/ksherlock/mpw-shell.git
synced 2025-03-12 01:33:57 +00:00
Create cmake.yml
This commit is contained in:
parent
b8cada73e8
commit
e8c0080f77
30
.github/workflows/cmake.yml
vendored
Normal file
30
.github/workflows/cmake.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user