-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (50 loc) · 1.22 KB
/
buildTimeAnalysis.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
name: Build Time Analysis
on: [push]
jobs:
Analysis:
runs-on: ubuntu-latest
env:
CC: clang
CXX: clang++
CFLAGS: -ftime-trace
CXXFLAGS: -ftime-trace
strategy:
fail-fast: false
steps:
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install -y xorg-dev nasm clang
- name: Versions
run: |
cmake --version
clang --version
git --version
- name: Prepare Build Analyzer
run: |
cd
git clone --recursive https://github.com/aras-p/ClangBuildAnalyzer.git buildAnalyzer
cd buildAnalyzer
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE ..
cmake --build . -- -j3
echo "$PWD" >> $GITHUB_PATH
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE ..
- name: Build
run: |
cd build
ClangBuildAnalyzer --start .
cmake --build . -- -j3
ClangBuildAnalyzer --stop . buildAnalysis
- name: Analyze
run: |
cd build
ClangBuildAnalyzer --analyze buildAnalysis