Skip to content

Tests fixing and actions support #4

Tests fixing and actions support

Tests fixing and actions support #4

Workflow file for this run

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