forked from Z3Prover/z3
-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (38 loc) · 908 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Various platforms (build-&-test)
on:
push:
branches:
- master
- devel
pull_request:
branches:
- master
- devel
# allows to run the action from GitHub UI
workflow_dispatch:
jobs:
ubuntu-build:
name: "Ubuntu (build-&-test)"
runs-on: ubuntu-latest
steps:
# - name: Clone Mata
# uses: GuillaumeFalourd/[email protected]
# with:
# owner: 'VeriFIT'
# repository: 'mata'
# branch: devel
# depth: 1
# - name: Install Mata
# run: |
# cd mata
# make release
# sudo make install
- name: Check out repository code
uses: actions/checkout@v3
- name: Compile Z3-Noodler release
run: |
ls
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE="Release" ../
make -j4