-
Notifications
You must be signed in to change notification settings - Fork 140
166 lines (142 loc) · 4.8 KB
/
codeql-analysis.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
name: "CodeQL"
on:
push:
branches: [ master, hotfix/**/* ]
pull_request:
branches: [ master, hotfix/**/* ]
env:
DD_ENV: ci
DD_SERVICE: dd-trace-dotnet
jobs:
profiler:
name: Analyze Profiler
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100'
- name: Download datadog-ci
run: |
npm install -g @datadog/datadog-ci
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp, cpp
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Learn more about CodeQL language support at https://git.io/codeql-language-support
- name: Install Clang-16
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 16
sudo ln -s -f `which clang-16` `which clang`
sudo ln -s -f `which clang++-16` `which clang++`
- name: Build dd-trace-dotnet
run: |
./tracer/build.sh BuildProfilerHome BuildNativeLoader
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: filter-sarif cpp
uses: advanced-security/filter-sarif@v1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/cpp.sarif
output: ../results/cpp.sarif
- name: filter-sarif csharp
uses: advanced-security/filter-sarif@v1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/csharp.sarif
output: ../results/csharp.sarif
# - name: Upload sarif file
# run: |
# datadog-ci sarif upload ../results/cpp.sarif --service dd-trace-dotnet
# datadog-ci sarif upload ../results/csharp.sarif --service dd-trace-dotnet
# env:
# DD_API_KEY: '${{ secrets.DD_STAGING_API_KEY }}'
tracer:
name: Analyze Tracer
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100'
- name: Download datadog-ci
run: |
npm install -g @datadog/datadog-ci
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp, cpp
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Learn more about CodeQL language support at https://git.io/codeql-language-support
- name: Install Clang-16
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 16
sudo ln -s -f `which clang-16` `which clang`
sudo ln -s -f `which clang++-16` `which clang++`
- name: Build dd-trace-dotnet
run: |
./tracer/build.sh BuildTracerHome
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: filter-sarif cpp
uses: advanced-security/filter-sarif@v1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/cpp.sarif
output: ../results/cpp.sarif
- name: filter-sarif csharp
uses: advanced-security/filter-sarif@v1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/csharp.sarif
output: ../results/csharp.sarif
# - name: Upload sarif file
# run: |
# datadog-ci sarif upload ../results/cpp.sarif --service dd-trace-dotnet
# datadog-ci sarif upload ../results/csharp.sarif --service dd-trace-dotnet
# env:
# DD_API_KEY: '${{ secrets.DD_STAGING_API_KEY }}'