From 3e5970ac77c4beee1a3cd7de991c0c3f2cb637b2 Mon Sep 17 00:00:00 2001 From: 417-72KI <417.72ki@gmail.com> Date: Mon, 16 Dec 2019 17:47:22 +0900 Subject: [PATCH] Fix action --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08bbf0a..e91662d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: macOS - run: set -o pipefail && xcrun xcodebuild test -scheme MultipartFormDataParser -destination "platform=macOS" clean test | xcpretty + run: set -o pipefail && rm -rf 'MultipartFormDataParser.xcodeproj' && xcrun xcodebuild -scheme MultipartFormDataParser -destination "platform=macOS" clean test | xcpretty iOS: name: Test on iOS runs-on: macOS-latest @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: iOS - ${{ matrix.destination }} - run: set -o pipefail && xcrun xcodebuild -scheme MultipartFormDataParser -destination "${{ matrix.destination }}" clean test | xcpretty + run: set -o pipefail && rm -rf 'MultipartFormDataParser.xcodeproj' && xcrun xcodebuild -scheme MultipartFormDataParser -destination "${{ matrix.destination }}" clean test | xcpretty tvOS: name: Test on tvOS runs-on: macOS-latest @@ -43,7 +43,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: tvOS - ${{ matrix.destination }} - run: set -o pipefail && xcrun xcodebuild -scheme "MultipartFormDataParser" -destination "${{ matrix.destination }}" clean test | xcpretty + run: set -o pipefail && rm -rf 'MultipartFormDataParser.xcodeproj' && xcrun xcodebuild -scheme "MultipartFormDataParser" -destination "${{ matrix.destination }}" clean test | xcpretty # watchOS: # name: Test on watchOS # runs-on: macOS-latest @@ -55,4 +55,4 @@ jobs: # steps: # - uses: actions/checkout@v1 # - name: watchOS - ${{ matrix.destination }} - # run: set -o pipefail && xcrun xcodebuild -scheme "MultipartFormDataParser" -destination "${{ matrix.destination }}" clean build | xcpretty + # run: set -o pipefail && rm -rf 'MultipartFormDataParser.xcodeproj' && xcrun xcodebuild -scheme "MultipartFormDataParser" -destination "${{ matrix.destination }}" clean build | xcpretty