Skip to content

Commit

Permalink
add mac build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ValKmjolnir committed Jun 24, 2024
1 parent 801a05f commit af37800
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/godel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ on:
branches: [ main ]

jobs:
mac-aarch64-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Update Git Env
run: |
git config --global user.name "$(git log -n 1 --pretty=format:%an)"
git config --global user.email "$(git log -n 1 --pretty=format:%ae)"
- name: Build
run: |
cd godel-script
cd godel-backend/souffle
git am ../0001-init-self-used-souffle-from-public-souffle.patch
cd ../..
mkdir build
cd build
cmake ..
make -j4
linux-x86_64-build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit af37800

Please sign in to comment.