doc string #672
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- '**' | |
schedule: | |
- cron: "30 1 * * 1" | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: 'ubuntu-latest' | |
container: | |
image: ghcr.io/microsoft/mscclpp/mscclpp:base-${{ matrix.cuda-version }} | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'cpp', 'python' ] | |
cuda-version: [ 'cuda11.8', 'cuda12.1' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Check disk space | |
run: | | |
df -h | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Install cmake | |
run: | | |
curl -L https://github.com/Kitware/CMake/releases/download/v3.26.4/cmake-3.26.4-linux-x86_64.tar.gz -o /tmp/cmake-3.26.4-linux-x86_64.tar.gz | |
tar xzf /tmp/cmake-3.26.4-linux-x86_64.tar.gz -C /tmp | |
sudo ln -s /tmp/cmake-3.26.4-linux-x86_64/bin/cmake /usr/bin/cmake | |
- name: Dubious ownership exception | |
run: | | |
git config --global --add safe.directory /__w/mscclpp/mscclpp | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:${{matrix.language}}/cuda-version:${{matrix.cuda-version}}" |