Skip to content
Open
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
4 changes: 3 additions & 1 deletion .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
- name: iOS Simulator Build Tests
run: xcodebuild -scheme BoringSSL-GRPC build -sdk 'iphonesimulator' -destination 'generic/platform=iOS Simulator'
- name: macos Build Tests
run: xcodebuild -scheme BoringSSL-GRPC build -sdk 'macosx' -destination 'platform=OS X,arch=x86_64',
run: xcodebuild -scheme BoringSSL-GRPC build -sdk 'macosx' -destination 'platform=OS X,arch=x86_64'
- name: tvOS Build Tests
run: xcodebuild -scheme BoringSSL-GRPC build -sdk "appletvsimulator" -destination 'generic/platform=tvOS Simulator'
- name: iOS Device Build Tests
run: xcodebuild -scheme BoringSSL-GRPC build -sdk 'iphoneos' -destination 'generic/platform=iOS'
- name: Swift Build
run: swift build
10 changes: 2 additions & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ let package = Package(
name: "openssl_grpc",
path: basePath,
exclude: [
"src/ssl/ssl_c_test.c",

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add this since the file might be introduced again in the next sync

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cherylEnkidu , if it's deleted, we shouldn't exclude it because I think SPM may have a "invalid exclude" error.

],

sources: [
Expand Down Expand Up @@ -318,14 +319,7 @@ let package = Package(
.headerSearchPath("./"),
.headerSearchPath("include/"),
]
),
.testTarget(
name: "build-test",
dependencies: [
"openssl_grpc",
],
path: testPath
),
)
],
cxxLanguageStandard: .cxx17
)
33 changes: 0 additions & 33 deletions SwiftPMTests/build-test/test.cc

This file was deleted.

Loading