Files
MentOS/.github/workflows/macos.yml
T
Enrico Fraccaroli (Galfurian) 28c00fd9ed Use gcc@11 under MacOS
2023-11-30 11:29:04 -05:00

34 lines
831 B
YAML

name: MacOS
on:
push:
branches-ignore:
- "releases/**"
paths-ignore:
- "**.md"
- ".gitignore"
- "**/ubuntu.yml"
- "**/windows.yml"
pull_request:
paths-ignore:
- "**.md"
- ".gitignore"
- "**/ubuntu.yml"
- "**/windows.yml"
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
brew install git cmake nasm
- name: Build
env:
CC: gcc-11
CXX: g++-11
run: |
cmake -B build
cmake --build build --parallel 2