Skip to content

Commit

Permalink
action: build on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
vhavlena committed Dec 21, 2024
1 parent d829181 commit 444da48
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
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: Instal Mata
run: |
cd mata
make release
sudo make install
- name: Compile Z3-Noodler release
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j4

0 comments on commit 444da48

Please sign in to comment.