[xtensor] update to 0.27.0 (#46417) #197
This file contains hidden or 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: [ "master" ] | |
schedule: | |
- cron: '26 0 * * 0' | |
workflow_dispatch: | |
jobs: | |
analyze: | |
name: Analyze (${{ matrix.language }}) | |
runs-on: 'ubuntu-latest' | |
permissions: | |
# required for all workflows | |
security-events: write | |
# required to fetch internal or private CodeQL packs | |
packages: read | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- language: actions | |
build-mode: none | |
- language: c-cpp | |
build-mode: manual | |
- language: python | |
build-mode: none | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
build-mode: ${{ matrix.build-mode }} | |
- if: matrix.build-mode == 'manual' | |
shell: bash | |
run: | | |
./bootstrap-vcpkg.sh | |
# This list of ports which are meaningful for CodeQL to analyze because they have actual code in vcpkg's repo | |
# See https://github.com/search?q=repo%3Amicrosoft%2Fvcpkg++language%3AC+&type=code | |
# See https://github.com/search?q=repo%3Amicrosoft%2Fvcpkg++language%3AC%2B%2B&type=code | |
./vcpkg install alac-decoder breakpad[tools] gettimeofday modp-base64 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |