From 6f0c5fc14d20f35b27be971678ec1c4839440de8 Mon Sep 17 00:00:00 2001 From: Shin Yamamoto Date: Sun, 18 Feb 2024 13:33:19 +0900 Subject: [PATCH] Test ci --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33d764e5..83982e63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ on: jobs: build: + if: false runs-on: ${{ matrix.runs-on }} env: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer @@ -48,6 +49,7 @@ jobs: run: xcodebuild -scheme FloatingPanel SWIFT_VERSION=${{ matrix.swift }} clean build test: + if: false runs-on: ${{ matrix.runs-on }} env: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer @@ -82,6 +84,7 @@ jobs: timeout-minutes: 20 example: + if: false runs-on: macos-13 env: DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer @@ -137,9 +140,12 @@ jobs: run: | swift build --sdk "$(xcrun --sdk iphonesimulator --show-sdk-path)" \ + -Xswiftc "-F" -Xswiftc "$(xcrun --sdk iphonesimulator --show-sdk-path)/System/Library/Frameworks" \ + -Xswiftc "-framework" -Xswiftc "UIKit" \ -Xswiftc "-target" -Xswiftc "${{ matrix.target }}" carthage: + if: false runs-on: macos-11 steps: - uses: actions/checkout@v3 @@ -147,6 +153,7 @@ jobs: run: carthage build --use-xcframeworks --no-skip-current cocoapods: + if: false runs-on: macos-13 env: DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer