Skip to content

Commit

Permalink
macos pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
thorstink committed Oct 1, 2024
1 parent af9dfdf commit e48b492
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@ name: Build project
on: [push]

jobs:
build-project-mac:
runs-on: macos-14
steps:
- uses: actions/checkout@v1
- name: "build project mac"
run: |
brew install glfw
git submodule update --init --recursive
mkdir build
cd build
bash -c 'cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_EXAMPLES=ON ..'
make
- name: Upload artefacts
uses: actions/upload-artifact@v4
with:
name: Farbart
path: build/symmetri/gui/Farbart

build-project:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit e48b492

Please sign in to comment.