Tests fixing and actions support #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |