From 3fab2bd2d5c4795bed2e9e35142e51f6228ae215 Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Sat, 9 Dec 2023 09:15:41 -0800 Subject: [PATCH] Build verbose to better enable debugging package working directory in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d49caccb..b2f48e05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Select Xcode Version run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer - name: Build Package Integration - run: xcrun swift build -c release --package-path Examples/ExamplePackageIntegration + run: xcrun swift build -c release --package-path Examples/ExamplePackageIntegration --verbose spm-project-integration-15: name: Build Project Integration on Xcode 15 @@ -43,4 +43,4 @@ jobs: - name: Select Xcode Version run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer - name: Build Project Integration - run: pushd Examples/ExampleProjectIntegration; xcrun xcodebuild build -skipPackagePluginValidation -skipMacroValidation -scheme ExampleProjectIntegration; popd + run: pushd Examples/ExampleProjectIntegration; xcrun xcodebuild build -skipPackagePluginValidation -skipMacroValidation -scheme ExampleProjectIntegration -verbose; popd