-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
Merge main into releases/v2
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"bundleVersion": "codeql-bundle-20220623" | ||
"bundleVersion": "codeql-bundle-20220714" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: "autobuild-action" | ||
description: "Tests that the C# autobuild action works" | ||
versions: ["latest"] | ||
steps: | ||
- uses: ./../action/init | ||
with: | ||
languages: csharp | ||
tools: ${{ steps.prepare-test.outputs.tools-url }} | ||
- uses: ./../action/autobuild | ||
env: | ||
# Explicitly disable the CLR tracer. | ||
COR_ENABLE_PROFILING: "" | ||
COR_PROFILER: "" | ||
COR_PROFILER_PATH_64: "" | ||
CORECLR_ENABLE_PROFILING: "" | ||
CORECLR_PROFILER: "" | ||
CORECLR_PROFILER_PATH_64: "" | ||
- uses: ./../action/analyze | ||
env: | ||
TEST_MODE: true | ||
- name: Check database | ||
shell: bash | ||
run: | | ||
cd "$RUNNER_TEMP/codeql_databases" | ||
if [[ ! -d csharp ]]; then | ||
echo "Did not find a C# database" | ||
exit 1 | ||
fi |