Skip to content

Update Linux.yml

Update Linux.yml #4

Workflow file for this run

name: Osx
on:
push:
branches:
- master
jobs:
build_Osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
ref: master
- name: checkout submodules
run : git submodule update --init --recursive
- name: Install OpenGL lib / Requirement for Glfw3
run : brew update
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_VR=OFF -DUSE_GPU_METRIC=OFF
- name: build
run: cmake --build build
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: DemoApp_Osx
path: build/Release/NoodlesPlate_Osx_x64