Skip to content

Report a concurrent import of the same problem instead of failing. #8851

Report a concurrent import of the same problem instead of failing.

Report a concurrent import of the same problem instead of failing. #8851

name: "CodeQL"
on:
push:
branches:
- main
- '[0-9]+.[0-9]+'
pull_request:
branches:
- main
- '[0-9]+.[0-9]+'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
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: Cache composer dependencies
if: ${{ contains(env.COMPILED, matrix.language) }}
uses: actions/cache@v4
with:
path: webapp/vendor
key: composer-${{ hashFiles('webapp/composer.lock') }}
restore-keys: |
composer-
- name: Cache node modules
if: ${{ contains(env.COMPILED, matrix.language) }}
uses: actions/cache@v4
with:
path: webapp/node_modules
key: npm-${{ hashFiles('webapp/package-lock.json') }}
restore-keys: |
npm-
- name: Install composer files
if: ${{ contains(env.COMPILED, matrix.language) }}
run: |
cd webapp
composer install --no-scripts
- name: Install frontend dependencies
if: ${{ contains(env.COMPILED, matrix.language) }}
run: |
cd webapp
yarnpkg install
- 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/monaco 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