Skip to content

Commit

Permalink
try to build godel in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ValKmjolnir committed Jun 24, 2024
1 parent 0ac6c6e commit 9df2cfb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/godel_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: GodelScript Build

on:
push:
branches: [ main, lhk_dev ]
pull_request:
branches: [ main, lhk_dev ]

jobs:
linux-x86_64-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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

0 comments on commit 9df2cfb

Please sign in to comment.