Skip to content
Open
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
6 changes: 5 additions & 1 deletion .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:
- name: iOS Simulator Build Tests
run: xcodebuild -scheme BoringSSL-GRPC build -sdk 'iphonesimulator' -destination 'platform=iOS Simulator,name=iPhone 11'
- 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 'platform=tvOS Simulator,name=Apple TV'
- name: iOS Device Build Tests
run: xcodebuild -scheme BoringSSL-GRPC build -sdk 'iphoneos' -destination 'generic/platform=iOS'
- name: Swift Build
run: swift build
- name: Swift Test
run: swift test
4 changes: 2 additions & 2 deletions SwiftPMTests/build-test/test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
#include <openssl/x509.h>
#include <openssl/x509v3.h>

// Test for duplicate `_main` symbol.
int main(int argc, char** argv) {}
// Renamed to avoid duplicate `_main` symbol conflict with auto-generated Swift test runner.
void test_main() {}
Loading