Skip to content

Commit

Permalink
Fix environment labels
Browse files Browse the repository at this point in the history
  • Loading branch information
scenee committed May 10, 2022
1 parent 70449c1 commit 73f12e7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ jobs:
include:
- swift: "5.6"
xcode: "Xcode_13.3.1.app"
runsOn: macOS-12
runsOn: macos-12
- swift: "5.5"
xcode: "Xcode_13.2.1.app"
runsOn: macOS-11
runsOn: macos-11
- swift: "5.4"
xcode: "Xcode_12.5.1.app"
runsOn: macOS-11
runsOn: macos-11
steps:
- uses: actions/checkout@v2
- name: ${{ matrix.name }}
run: xcodebuild -scheme FloatingPanel SWIFT_VERSION=${{ matrix.swift }} clean build

build_compat:
runs-on: macOS-10.15
runs-on: macos-10.15
steps:
- uses: actions/checkout@v1
- name: "Swift 5.1"
Expand All @@ -48,7 +48,7 @@ jobs:
DEVELOPER_DIR: /Applications/Xcode_12.4.app/Contents/Developer

testing:
runs-on: macOS-11
runs-on: macos-11
steps:
- uses: actions/checkout@v1
- name: "Testing in iOS 14.5"
Expand All @@ -61,7 +61,7 @@ jobs:
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer

testing_compat:
runs-on: macOS-10.15
runs-on: macos-10.15
steps:
- uses: actions/checkout@v1
- name: "Testing in iOS 13.7"
Expand All @@ -74,7 +74,7 @@ jobs:
DEVELOPER_DIR: /Applications/Xcode_12.4.app/Contents/Developer

example:
runs-on: macOS-12
runs-on: macos-12
env:
DEVELOPER_DIR: /Applications/Xcode_13.3.1.app/Contents/Developer
steps:
Expand All @@ -87,7 +87,7 @@ jobs:
run: xcodebuild -workspace FloatingPanel.xcworkspace -scheme Samples -sdk iphonesimulator clean build

swiftpm:
runs-on: macOS-12
runs-on: macos-12
env:
DEVELOPER_DIR: /Applications/Xcode_13.3.1.app/Contents/Developer
steps:
Expand All @@ -96,14 +96,14 @@ jobs:
run: swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios14.3-simulator"

carthage:
runs-on: macOS-11
runs-on: macos-11
steps:
- uses: actions/checkout@v1
- name: "Carthage build"
run: carthage build --use-xcframeworks --no-skip-current

cocoapods:
runs-on: macOS-12
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: "CocoaPods: pod lib lint"
Expand Down

0 comments on commit 73f12e7

Please sign in to comment.