Skip to content

Commit 9df2cfb

Browse files
committed
try to build godel in github workflow
1 parent 0ac6c6e commit 9df2cfb

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/godel_build.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: GodelScript Build
2+
3+
on:
4+
push:
5+
branches: [ main, lhk_dev ]
6+
pull_request:
7+
branches: [ main, lhk_dev ]
8+
9+
jobs:
10+
linux-x86_64-build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Build
15+
run: |
16+
cd godel-script
17+
cd godel-backend/souffle
18+
git am ../0001-init-self-used-souffle-from-public-souffle.patch
19+
cd ../..
20+
mkdir build
21+
cd build
22+
cmake ..
23+
make -j4

0 commit comments

Comments
 (0)