-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (48 loc) · 1.08 KB
/
build_minimal_linux.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
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Linux build check
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
issues: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
run: sudo apt -y install git g++ cmake libsqlite3-dev gcovr
- name: Clone aquamarine repo
run: git clone https://github.com/MaksymT17/aquamarine.git
- name: Build artifacts with Cmake
run: |
cd aquamarine
./build.sh
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: am-build
- name: Run unit tests
run: |
ls am-build
cd aquamarine/unit_tests
./prepare_build.sh
./make_and_run_tests.sh
ls build
pwd
ls
cd ..
pwd
ls
cd ..
pwd
ls
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/linux@v2
if: always()
with:
files: |
*/am_ut_report.xml