Deprecate fine-grained parallelism feature-flag #2892
Workflow file for this run
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
# Tests that the generated code scanning config file contains the expected contents | |
name: Code-Scanning config CLI tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
branches: | |
- main | |
- releases/v* | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
workflow_dispatch: {} | |
jobs: | |
code-scanning-config-tests: | |
continue-on-error: true | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
version: latest | |
- os: macos-latest | |
version: latest | |
- os: ubuntu-latest | |
version: default | |
- os: macos-latest | |
version: default | |
- os: ubuntu-latest | |
version: nightly-latest | |
- os: macos-latest | |
version: nightly-latest | |
# Code-Scanning config not created because environment variable is not set | |
name: Code Scanning Configuration tests | |
timeout-minutes: 45 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Prepare test | |
id: prepare-test | |
uses: ./.github/actions/prepare-test | |
with: | |
version: ${{ matrix.version }} | |
- name: Empty file | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: "{}" | |
languages: javascript | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Packs from input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
languages: javascript | |
packs: codeql-testing/codeql-pack1@1.0.0, codeql-testing/codeql-pack2 | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Packs from input with + | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
languages: javascript | |
packs: + codeql-testing/codeql-pack1@1.0.0, codeql-testing/codeql-pack2 | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries from input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }] | |
} | |
languages: javascript | |
queries: ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries from input with + | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }] | |
} | |
languages: javascript | |
queries: + ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from input with + | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }], | |
"packs": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
languages: javascript | |
queries: + ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
packs: + codeql-testing/codeql-pack1@1.0.0, codeql-testing/codeql-pack2 | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from config | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/foo2/show_ifs.ql" }], | |
"packs": { | |
"javascript": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
} | |
languages: javascript | |
config-file-test: .github/codeql/queries-and-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from config overriden by input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }], | |
"packs": ["codeql/javascript-queries"] | |
} | |
languages: javascript | |
queries: ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
packs: codeql/javascript-queries | |
config-file-test: .github/codeql/queries-and-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from config merging with input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [ | |
{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/foo2/show_ifs.ql" }, | |
{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" } | |
], | |
"packs": { | |
"javascript": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2", "codeql/javascript-queries" ] | |
} | |
} | |
languages: javascript | |
queries: + ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
packs: + codeql/javascript-queries | |
config-file-test: .github/codeql/queries-and-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Multi-language packs from config | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": { | |
"javascript": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ], | |
"ruby": ["codeql/ruby-queries"] | |
}, | |
"queries": [ | |
{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/foo2/show_ifs.ql" } | |
] | |
} | |
languages: javascript,ruby | |
config-file-test: .github/codeql/multi-language-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Other config properties | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"name": "Config using all properties", | |
"packs": ["codeql/javascript-queries" ], | |
"disable-default-queries": true, | |
"paths-ignore": ["xxx"], | |
"paths": ["yyy"] | |
} | |
languages: javascript | |
packs: + codeql/javascript-queries | |
config-file-test: .github/codeql/other-config-properties.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} |