Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
417-72KI committed Dec 16, 2019
1 parent cf072f5 commit 3e5970a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit 3e5970a

Please sign in to comment.