-
Notifications
You must be signed in to change notification settings - Fork 258
81 lines (68 loc) · 1.85 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
name: "CodeQL"
on:
push:
branches:
- main
- '[0-9]+.[0-9]+'
pull_request:
branches:
- main
- '[0-9]+.[0-9]+'
jobs:
analyze:
container:
image: domjudge/gitlabci:24.04
options: --user domjudge
name: Analyze
runs-on: ubuntu-latest
env:
COMPILED: "cpp"
USER: "domjudge"
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'cpp', 'java', 'javascript', 'python' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Install composer files
if: ${{ contains(env.COMPILED, matrix.language) }}
run: |
cd webapp
composer install --no-scripts
- name: Configure Makefile
if: ${{ contains(env.COMPILED, matrix.language) }}
run: |
DIR=$(pwd)
mkdir ./installdir
make configure
./configure --enable-doc-build=no --prefix=$DIR/installdir
- name: Compile domserver
if: ${{ contains(env.COMPILED, matrix.language) }}
run: |
make domserver
make install-domserver
- name: Compile the build scripts for languages
run: |
make build-scripts
- name: Compile judgehost
if: ${{ contains(env.COMPILED, matrix.language) }}
run: |
make judgehost
sudo make install-judgehost
- name: Remove upstream code
run: |
rm -rf webapp/public/js/ace doc/manual/_static
- name: Chown everything to the current runner user
if: ${{ contains(env.COMPILED, matrix.language) }}
run: sudo chown -R ${USER} ./installdir
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3