Skip to content

Commit 7019a9c

Browse files
authored
Merge pull request #1618 from github/henrymercer/remove-legacy-tracing
Remove legacy tracing
2 parents afdf30f + 66f62df commit 7019a9c

File tree

70 files changed

+710
-1794
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+710
-1794
lines changed

.github/actions/setup-swift/action.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: "Set up Swift"
2-
description: Performs necessary steps to set up appropriate Swift version.
2+
description: Sets up an appropriate Swift version if Swift is enabled via CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT.
33
inputs:
44
codeql-path:
5+
description: Path to the CodeQL CLI executable.
56
required: true
67
runs:
78
using: "composite"
89
steps:
910
- name: Get Swift version
1011
id: get_swift_version
11-
# We don't support Swift on Windows or prior versions of CLI.
12-
if: "(runner.os != 'Windows') && (matrix.version == 'cached' || matrix.version == 'latest' || matrix.version == 'nightly-latest')"
12+
if: env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true'
1313
shell: bash
1414
env:
15-
CODEQL_PATH: ${{inputs.codeql-path}}
15+
CODEQL_PATH: ${{ inputs.codeql-path }}
1616
run: |
1717
if [ $RUNNER_OS = "macOS" ]; then
1818
PLATFORM="osx64"
@@ -27,6 +27,6 @@ runs:
2727
fi
2828
echo "version=$VERSION" | tee -a $GITHUB_OUTPUT
2929
- uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf # Please update the corresponding SHA in the CLI's CodeQL Action Integration Test.
30-
if: "(runner.os != 'Windows') && (matrix.version == 'cached' || matrix.version == 'latest' || matrix.version == 'nightly-latest')"
30+
if: env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true'
3131
with:
32-
swift-version: "${{steps.get_swift_version.outputs.version}}"
32+
swift-version: "${{ steps.get_swift_version.outputs.version }}"

.github/workflows/__analyze-ref-input.yml

+29-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__autobuild-action.yml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__config-export.yml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__diagnostics-export.yml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__export-file-baseline-information.yml

+15-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__extractor-ram-threads.yml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-custom-queries.yml

+29-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-autobuilder.yml

+23-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-custom-build-steps.yml

+23-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)