mirror of
https://github.com/github/codeql-action.git
synced 2026-08-05 04:57:19 -05:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dfd54fee64 | |||
| fc61332304 | |||
| 35218036de | |||
| fbcce35bbf | |||
| 5cbac1c2c5 | |||
| 4f57ff0df1 | |||
| e4a8b02bc5 | |||
| ada32408de | |||
| 11ae525cfd | |||
| 8e97061217 | |||
| 9e009f1864 | |||
| 8a65a9e73d |
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
Generated
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
+84
-40
@@ -3,7 +3,7 @@
|
|||||||
# pip install ruamel.yaml && python3 sync.py
|
# pip install ruamel.yaml && python3 sync.py
|
||||||
# to regenerate this file.
|
# to regenerate this file.
|
||||||
|
|
||||||
name: 'PR Check - Autobuild '
|
name: 'PR Check - Autobuild C# on macOS'
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
GO111MODULE: auto
|
GO111MODULE: auto
|
||||||
@@ -13,6 +13,7 @@ on:
|
|||||||
- main
|
- main
|
||||||
- releases/v1
|
- releases/v1
|
||||||
- releases/v2
|
- releases/v2
|
||||||
|
- aibaars/runner-autobuilders
|
||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
@@ -21,44 +22,87 @@ on:
|
|||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
jobs:
|
jobs:
|
||||||
autobuild-macos-dotnet:
|
runner-analyze-csharp-autobuild-macos:
|
||||||
strategy:
|
name: Runner macos autobuild C# analyze
|
||||||
matrix:
|
runs-on: macos-latest
|
||||||
include:
|
|
||||||
- os: ubuntu-latest
|
|
||||||
version: latest
|
|
||||||
- os: macos-latest
|
|
||||||
version: latest
|
|
||||||
- os: windows-2019
|
|
||||||
version: latest
|
|
||||||
- os: windows-2022
|
|
||||||
version: latest
|
|
||||||
name: 'Autobuild '
|
|
||||||
timeout-minutes: 45
|
timeout-minutes: 45
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Prepare test
|
- name: Move codeql-action
|
||||||
id: prepare-test
|
shell: bash
|
||||||
uses: ./.github/prepare-test
|
run: |
|
||||||
with:
|
mkdir ../action
|
||||||
version: ${{ matrix.version }}
|
mv * .github ../action/
|
||||||
- uses: ./../action/init
|
mv ../action/tests/multi-language-repo/{*,.github} .
|
||||||
with:
|
mv ../action/.github/workflows .github
|
||||||
languages: csharp
|
|
||||||
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
- name: Build runner
|
||||||
- uses: ./../action/autobuild
|
run: |
|
||||||
- uses: ./../action/analyze
|
cd ../action/runner
|
||||||
env:
|
npm install
|
||||||
TEST_MODE: true
|
npm run build-runner
|
||||||
- name: Check database
|
|
||||||
shell: bash
|
- name: Run init
|
||||||
run: |
|
run: |
|
||||||
cd "$RUNNER_TEMP/codeql_databases"
|
../action/runner/dist/codeql-runner-macos init --repository $GITHUB_REPOSITORY --languages csharp --github-url $GITHUB_SERVER_URL --github-auth ${{ github.token }}
|
||||||
if [[ ! -d csharp ]]; then
|
|
||||||
echo "Did not find a C# database"
|
- name: Load environment variable
|
||||||
exit 1
|
shell: bash
|
||||||
fi
|
run: |
|
||||||
env:
|
echo "Initial environment"
|
||||||
INTERNAL_CODEQL_ACTION_DEBUG_LOC: true
|
cat codeql-runner/codeql-env.json | jq
|
||||||
|
DYLD="$(cat codeql-runner/codeql-env.json | jq -r '.DYLD_INSERT_LIBRARIES')"
|
||||||
|
echo "$DYLD"
|
||||||
|
echo "DYLD_INSERT_LIBRARIES=$DYLD" >> "$GITHUB_ENV"
|
||||||
|
LOG="$(cat codeql-runner/codeql-env.json | jq -r '.CODEQL_TRACER_LOG')"
|
||||||
|
echo "$LOG"
|
||||||
|
echo "CODEQL_TRACER_LOG=$LOG" >> "$GITHUB_ENV"
|
||||||
|
SEMMLE_COPY_EXECUTABLES_ROOT="$(cat codeql-runner/codeql-env.json | jq -r '.SEMMLE_COPY_EXECUTABLES_ROOT')"
|
||||||
|
echo "$SEMMLE_COPY_EXECUTABLES_ROOT"
|
||||||
|
echo "SEMMLE_COPY_EXECUTABLES_ROOT=$SEMMLE_COPY_EXECUTABLES_ROOT" >> "$GITHUB_ENV"
|
||||||
|
SEMMLE_PRELOAD_libtrace="$(cat codeql-runner/codeql-env.json | jq -r '.SEMMLE_PRELOAD_libtrace')"
|
||||||
|
echo "$SEMMLE_PRELOAD_libtrace"
|
||||||
|
echo "SEMMLE_PRELOAD_libtrace=$SEMMLE_PRELOAD_libtrace" >> "$GITHUB_ENV"
|
||||||
|
CODEQL_DIST="$(cat codeql-runner/codeql-env.json | jq -r '.CODEQL_DIST')"
|
||||||
|
echo "$CODEQL_DIST"
|
||||||
|
echo "CODEQL_DIST=$CODEQL_DIST" >> "$GITHUB_ENV"
|
||||||
|
CODEQL_PLATFORM="$(cat codeql-runner/codeql-env.json | jq -r '.CODEQL_PLATFORM')"
|
||||||
|
echo "$CODEQL_PLATFORM"
|
||||||
|
echo "CODEQL_PLATFORM=$CODEQL_PLATFORM" >> "$GITHUB_ENV"
|
||||||
|
CODEQL_TOOL_PATH="$(cat codeql-runner/codeql-env.json | jq -r '.CODEQL_TOOL_PATH')"
|
||||||
|
echo "$CODEQL_TOOL_PATH"
|
||||||
|
echo "CODEQL_TOOL_PATH=$CODEQL_TOOL_PATH" >> "$GITHUB_ENV"
|
||||||
|
echo "SEMMLE_DEBUG_TRACER=10000" >> "$GITHUB_ENV"
|
||||||
|
CODEQL_SCRATCH_DIR="$(cat codeql-runner/codeql-env.json | jq -r '.CODEQL_SCRATCH_DIR')"
|
||||||
|
echo "$CODEQL_SCRATCH_DIR"
|
||||||
|
echo "CODEQL_SCRATCH_DIR=$CODEQL_SCRATCH_DIR" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
|
echo "Removing CLR tracer variables"
|
||||||
|
cat codeql-runner/codeql-env.json | jq 'del(.COR_ENABLE_PROFILING, .COR_PROFILER, .COR_PROFILER_PATH_64, .CORECLR_ENABLE_PROFILING, .CORECLR_PROFILER, .CORECLR_PROFILER_PATH_64)' > codeql-env.temp.json
|
||||||
|
mv codeql-env.temp.json codeql-runner/codeql-env.json
|
||||||
|
|
||||||
|
echo "Final environment"
|
||||||
|
cat codeql-runner/codeql-env.json | jq
|
||||||
|
env
|
||||||
|
|
||||||
|
- name: Build code
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
env
|
||||||
|
# No CODEQL_RUNNER prefix.
|
||||||
|
# No explicit sourcing of the tracing environment. We assume the autobuild command loads the tracing environment.
|
||||||
|
../action/runner/dist/codeql-runner-macos autobuild
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: debug-artifact-log
|
||||||
|
path: |
|
||||||
|
/Users/runner/work/codeql-action/codeql-action/codeql-runner/codeql_databases
|
||||||
|
|
||||||
|
- name: Run analyze
|
||||||
|
run: |
|
||||||
|
../action/runner/dist/codeql-runner-macos analyze --repository $GITHUB_REPOSITORY --commit $GITHUB_SHA --ref $GITHUB_REF --github-url $GITHUB_SERVER_URL --github-auth ${{ github.token }}
|
||||||
|
env:
|
||||||
|
TEST_MODE: true
|
||||||
|
|||||||
Generated
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
Generated
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
Generated
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
Generated
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
Generated
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
-1
@@ -16,7 +16,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ on:
|
|||||||
- src/defaults.json
|
- src/defaults.json
|
||||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||||
# by other workflows.
|
# by other workflows.
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, reopened, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-expected-release-files:
|
check-expected-release-files:
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ on:
|
|||||||
branches: [main, releases/v1, releases/v2]
|
branches: [main, releases/v1, releases/v2]
|
||||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||||
# by other workflows.
|
# by other workflows.
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, reopened, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-for-conflicts:
|
check-for-conflicts:
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ on:
|
|||||||
branches: [main, releases/v1, releases/v2]
|
branches: [main, releases/v1, releases/v2]
|
||||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||||
# by other workflows.
|
# by other workflows.
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, reopened, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Identify the CodeQL tool versions to use in the analysis job.
|
# Identify the CodeQL tool versions to use in the analysis job.
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
|
||||||
- reopened
|
- reopened
|
||||||
- ready_for_review
|
- ready_for_review
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||||
# by other workflows.
|
# by other workflows.
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, reopened, ready_for_review]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||||
# by other workflows.
|
# by other workflows.
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, reopened, ready_for_review]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-setup-python-scripts:
|
test-setup-python-scripts:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: Update dependencies
|
name: Update dependencies
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types: [opened, synchronize, reopened, ready_for_review, labeled]
|
types: [opened, reopened, ready_for_review, labeled]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update:
|
update:
|
||||||
|
|||||||
Generated
+2
-8
@@ -510,13 +510,7 @@ async function getCodeQLForCmd(cmd, checkVersion) {
|
|||||||
"-Dhttp.keepAlive=false",
|
"-Dhttp.keepAlive=false",
|
||||||
"-Dmaven.wagon.http.pool=false",
|
"-Dmaven.wagon.http.pool=false",
|
||||||
].join(" ");
|
].join(" ");
|
||||||
const runnerExe = process.env["CODEQL_RUNNER"];
|
await runTool(autobuildCmd);
|
||||||
if (runnerExe) {
|
|
||||||
await runTool(runnerExe, [autobuildCmd]);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
await runTool(autobuildCmd);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
async extractScannedLanguage(databasePath, language, featureFlags) {
|
async extractScannedLanguage(databasePath, language, featureFlags) {
|
||||||
// Get extractor location
|
// Get extractor location
|
||||||
@@ -808,4 +802,4 @@ async function runTool(cmd, args = []) {
|
|||||||
throw new CommandInvocationError(cmd, args, exitCode, error);
|
throw new CommandInvocationError(cmd, args, exitCode, error);
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
//# sourceMappingURL=codeql.js.map
|
//# sourceMappingURL=codeql.js.map
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-6
@@ -780,12 +780,7 @@ async function getCodeQLForCmd(
|
|||||||
"-Dmaven.wagon.http.pool=false",
|
"-Dmaven.wagon.http.pool=false",
|
||||||
].join(" ");
|
].join(" ");
|
||||||
|
|
||||||
const runnerExe = process.env["CODEQL_RUNNER"];
|
await runTool(autobuildCmd);
|
||||||
if (runnerExe) {
|
|
||||||
await runTool(runnerExe, [autobuildCmd]);
|
|
||||||
} else {
|
|
||||||
await runTool(autobuildCmd);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
async extractScannedLanguage(
|
async extractScannedLanguage(
|
||||||
databasePath: string,
|
databasePath: string,
|
||||||
|
|||||||
Reference in New Issue
Block a user