update checkout to v3 to get rid of warning #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macos | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
uses: tecolicom/actions-use-homebrew-tools@v1 | |
with: | |
tools: freeglut glew mesa openal-soft sdl2 | |
- name: Build | |
run: | | |
mkdir build && cd build | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
make VERBOSE=1 -j4 | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cen64 MacOS | |
path: ./build/cen64 |