Skip to content

ffi: impl Sync, Send for MCache, DCache, FSeq #397

ffi: impl Sync, Send for MCache, DCache, FSeq

ffi: impl Sync, Send for MCache, DCache, FSeq #397

Workflow file for this run

name: "CodeQL"
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: [self-hosted, Linux, X64]
env:
MACHINE: linux_clang_x86_64
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'cpp', 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
defaults:
run:
shell: bash --noprofile --norc -eo pipefail -c "set -ex; export MACHINE=linux_clang_x86_64; chmod +x {0} && {0}"
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- uses: dtolnay/[email protected]
- uses: ./.github/actions/deps
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: "Build with CodeQL instrumentation"
run: |
make -j
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
threads: 0