-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (96 loc) · 2.67 KB
/
main.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: trace-cruncher CI
on:
push:
branches: [tracecruncher, yordan_devel]
schedule:
- cron: '0 15 * * THU'
workflow_dispatch:
jobs:
build-test-snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
working-directory: ${{runner.workspace}}/trace-cruncher
shell: bash
run: |
sudo apt-get update
sudo apt-get install build-essential git cmake libjson-c-dev binutils-dev -y
sudo apt-get install libpython3-dev cython3 python3-numpy -y
sudo apt install python3-pip
sudo pip3 install pkgconfig GitPython psutil
cd ./scripts/git-snapshot/
bash ./git-snapshot.sh -f ./repos
cd libtraceevent
make
sudo make install
cd ..
cd libtracefs
make
sudo make install
cd ..
cd trace-cmd
make
sudo make install_libs
cd ..
cd kernel-shark/build
cmake ..
make
sudo make install
cd ../..
- name: Build
working-directory: ${{runner.workspace}}/trace-cruncher
shell: bash
# Build and install.
run: |
make
sudo make install
- name: Test
working-directory: ${{runner.workspace}}/trace-cruncher/tests
shell: bash
# Execute tests defined by the CMake configuration.
run: sudo python3 -m unittest discover .
build-test-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
working-directory: ${{runner.workspace}}/trace-cruncher
shell: bash
run: |
sudo apt-get update
sudo apt-get install build-essential git cmake libjson-c-dev binutils-dev -y
sudo apt-get install libpython3-dev cython3 python3-numpy -y
sudo apt install python3-pip
sudo pip3 install pkgconfig GitPython psutil
cd ./scripts/git-snapshot/
bash ./git-snapshot.sh -l -f ./repos
cd libtraceevent
make
sudo make install
cd ..
cd libtracefs
make
sudo make install
cd ..
cd trace-cmd
make
sudo make install_libs
cd ..
cd kernel-shark/build
cmake ..
make
sudo make install
cd ../..
- name: Build
working-directory: ${{runner.workspace}}/trace-cruncher
shell: bash
# Build and install.
run: |
make
sudo make install
- name: Test
working-directory: ${{runner.workspace}}/trace-cruncher/tests
shell: bash
# Execute tests defined by the CMake configuration.
run: sudo python3 -m unittest discover .