-
Notifications
You must be signed in to change notification settings - Fork 90
[CI] Add support for GitHub Actions #446
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
Changes from 4 commits
39fb051
ac69e13
2ec278c
58a09b8
2015da9
adb2643
831cb02
0ae6d6a
9cd8857
f7bc982
51940c9
609aa04
0a59da5
932ef8a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,19 @@ on: | |
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tests: | ||
name: Test | ||
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main | ||
with: | ||
linux_exclude_swift_versions: '[{"swift_version": "5.9"}, {"swift_version": "5.10"}]' | ||
linux_pre_build_command: apt-get update && apt-get install -y libsqlite3-dev libncurses5-dev | ||
windows_exclude_swift_versions: '[{"swift_version": "5.9"}, {"swift_version": "5.10"}]' | ||
linux_os_versions: '["noble", "jammy", "focal", "rhel-ubi9"]' | ||
linux_pre_build_command: command -v apt >/dev/null 2>&1 && apt update && apt install -y libsqlite3-dev libncurses5-dev || (command -v yum >/dev/null 2>&1 && yum update -y && yum install -y sqlite-devel) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On RedHat it's There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Going to revert back to not including it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, sorry, checked again and it's I was looking at the Debian metapackage before -- and on Debian we should use |
||
linux_swift_versions: '["nightly-main", "nightly-6.2"]' | ||
windows_swift_versions: '["nightly-main"]' | ||
soundness: | ||
name: Soundness | ||
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main | ||
|
Uh oh!
There was an error while loading. Please reload this page.