-
Notifications
You must be signed in to change notification settings - Fork 16
38 lines (34 loc) · 1.03 KB
/
malt.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
######################################################
# PROJECT : MALT #
# VERSION : 1.2.3 #
# DATE : 06/2023 #
# AUTHOR : Sebastien Valat #
# LICENSE : Apache 2.0 #
######################################################
name: Malt
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-project:
name: Build & test MALT
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install dependencies
run: sudo apt-get install -y libunwind-dev nodejs npm cmake
- name: Build Project & test
run: |
mkdir build
cd build
../configure --enable-tests --enable-debug --enable-junit-output
make
ctest --output-on-failure
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: failure()