Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
with:
linux_pre_build_command: apt-get update && apt-get install -y locales locales-all libsqlite3-dev
linux_pre_build_command: apt-get update && apt-get install -y locales locales-all libsqlite3-dev docker
enable_windows_checks: false
soundness:
name: Soundness
Expand Down
4 changes: 1 addition & 3 deletions Tests/SwiftSDKGeneratorTests/EndToEndTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,7 @@ final class RepeatedBuildTests: XCTestCase {
private let logger = Logger(label: "swift-sdk-generator")

func testRepeatedSDKBuilds() async throws {
if ProcessInfo.processInfo.environment.keys.contains("JENKINS_URL")
|| ProcessInfo.processInfo.environment.keys.contains("GITHUB_ACTIONS")
{
if ProcessInfo.processInfo.environment.keys.contains("JENKINS_URL") {
throw XCTSkip(
"EndToEnd tests cannot currently run in CI: https://github.com/swiftlang/swift-sdk-generator/issues/145"
)
Expand Down
Loading