[go: nahoru, domu]

Skip to content

Merge pull request #54 from yuz1/main #111

Merge pull request #54 from yuz1/main

Merge pull request #54 from yuz1/main #111

Workflow file for this run

name: CMake MacOS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
BUILD_TYPE: Release
jobs:
build_macOS:
name: build_macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
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}}