8000 Add build mode to Swift autobuild PR check by henrymercer · Pull Request #2342 · github/codeql-action · GitHub
[go: up one dir, main page]

Skip to content

Add build mode to Swift autobuild PR check #2342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add build mode to Swift autobuild check
  • Loading branch information
henrymercer committed Jun 17, 2024
commit eb17dc2c6fefa319cdff36a2a4e466ab29d00e7a
2 changes: 1 addition & 1 deletion .github/workflows/__swift-autobuild.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions pr-checks/checks/swift-autobuild.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
name: "Swift analysis using autobuild"
description: "Tests creation of a Swift database using autobuild"
# versions: ["latest", "cached", "nightly-latest"]
versions: ["nightly-latest"]
# Swift autobuilder is only supported on MacOS for private beta
operatingSystems: ["macos"]
env:
CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT: "true" # Remove when Swift is GA.
steps:
- uses: ./../action/init
id: init
with:
languages: swift
build-mode: autobuild
tools: ${{ steps.prepare-test.outputs.tools-url }}
- uses: ./../action/.github/actions/setup-swift
with:
Expand Down
0