From 148cedf00f127f45a451521fc45eff976b5e5def Mon Sep 17 00:00:00 2001 From: onevcat Date: Fri, 16 Feb 2024 00:03:47 +0900 Subject: [PATCH] Try to upload log --- .github/workflows/build.yaml | 7 +++++++ fastlane/Fastfile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 719674940..f00f92418 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,3 +24,10 @@ jobs: DESTINATION: platform=${{ matrix.destination }} SWIFT_VERSION: ${{ matrix.swift-version }} run: bundle exec fastlane test_ci + - name: Archiving DerivedData Logs + uses: actions/upload-artifact@v2 + if: failure() + with: + name: derived-data-${{ matrix.destination }} + path: | + /Users/runner/Library/Developer/Xcode/DerivedData/**/Logs/** diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b3d116d1b..61ba9add8 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -7,7 +7,7 @@ platform :ios do desc "Runs all the tests" lane :tests do test(destination: "platform=macOS", swift_version: "5.0") - test(destination: "platform=iOS Simulator,name=iPhone 14", swift_version: "5.0") + test(destination: "platform=iOS Simulator,name=iPhone 15", swift_version: "5.0") test(destination: "platform=tvOS Simulator,name=Apple TV", swift_version: "5.0") build(destination: "platform=watchOS Simulator,name=Apple Watch Series 8 (41mm)", swift_version: "5.0") end