-
Notifications
You must be signed in to change notification settings - Fork 4
43 lines (41 loc) · 1.01 KB
/
JMixtComp.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
name: JMixtComp C++ Library
on:
push:
branches:
- master
- staging
paths:
- 'MixtComp/**'
- '!MixtComp/docs/**'
- 'JMixtComp/**'
- '.github/workflows/JMixtComp.yml'
- '!**/README.md'
pull_request:
branches:
- master
- staging
paths:
- 'MixtComp/**'
- '!MixtComp/docs/**'
- 'JMixtComp/**'
- '.github/workflows/JMixtComp.yml'
- '!**/README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout MixtComp
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install MixtComp dependencies
run: sudo apt-get install cmake libboost-all-dev libeigen3-dev libxml2-dev lcov valgrind
- name: Compile JMixtComp
working-directory: JMixtComp
run: ./build.sh Debug
- name: Test JMixtComp
working-directory: JMixtComp
run: ./utest.sh
- name: Run valgrind
working-directory: JMixtComp
run: ./valgrindRun.sh