forked from mafemergency/byond-tracy
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 967 Bytes
/
codeql.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
name: CodeQL
env:
CODEQL_EXTRACTOR_CPP_AUTOINSTALL_DEPENDENCIES: false
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: 0 8 * * 1
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
timeout-minutes: 10
permissions:
actions: read
contents: read
packages: read
security-events: write
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: c-cpp
build-mode: manual
- name: Install packages
run: sudo apt-get install gcc-multilib g++-multilib
- name: Build Linux (GCC)
run: gcc -std=c11 -m32 -shared -fPIC -Ofast -s -DNDEBUG prof.c -pthread -o tracy.so
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"