Skip to content

Commit

Permalink
Stringify deployment target since the "." is dropped when executing t…
Browse files Browse the repository at this point in the history
…he yaml in Github actions
  • Loading branch information
Alexander Widerberg committed Dec 12, 2021
1 parent 3903953 commit a5f8dbf
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/catalyst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-11
env:
PLATFORM: MAC_CATALYST
DEPLOYMENT_TARGET: 13.0
DEPLOYMENT_TARGET: "13.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: macos-11
env:
PLATFORM: MAC_CATALYST_ARM64
DEPLOYMENT_TARGET: 13.0
DEPLOYMENT_TARGET: "13.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/combined.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
PLATFORM: OS64COMBINED
USE_NEW_BUILD: 1
DEPLOYMENT_TARGET: 12.0
DEPLOYMENT_TARGET: "12.0"
USE_XCODE: 1
steps:
- uses: actions/checkout@v2
Expand All @@ -28,7 +28,7 @@ jobs:
env:
PLATFORM: WATCHOSCOMBINED
USE_NEW_BUILD: 1
DEPLOYMENT_TARGET: 5.0
DEPLOYMENT_TARGET: "5.0"
USE_XCODE: 1
steps:
- uses: actions/checkout@v2
Expand All @@ -43,7 +43,7 @@ jobs:
env:
PLATFORM: TVOSCOMBINED
USE_NEW_BUILD: 1
DEPLOYMENT_TARGET: 11.0
DEPLOYMENT_TARGET: "11.0"
USE_XCODE: 1
steps:
- uses: actions/checkout@v2
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: macos-11
env:
PLATFORM: OS64COMBINED
DEPLOYMENT_TARGET: 14.0
DEPLOYMENT_TARGET: "14.0"
USE_XCODE: 1
BUILD_CURL: 1
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: macos-latest
env:
PLATFORM: OS64
DEPLOYMENT_TARGET: 11.0
DEPLOYMENT_TARGET: "11.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: macos-latest
env:
PLATFORM: OS64
DEPLOYMENT_TARGET: 12.0
DEPLOYMENT_TARGET: "12.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
runs-on: macos-latest
env:
PLATFORM: MAC
DEPLOYMENT_TARGET: 10.13
DEPLOYMENT_TARGET: "10.13"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '12.5.1'
- name: Build
run: ./.github/build.sh
build_with_13_1_MAC:
build_with_13_2_MAC:
name: "Xcode version 13.2, Target macOS [arm64] Target SDK 11.0 [shared example]"
runs-on: macos-11
env:
PLATFORM: MAC_ARM64
DEPLOYMENT_TARGET: 11.0
DEPLOYMENT_TARGET: "11.0"
BUILD_SHARED: 1
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tvos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-latest
env:
PLATFORM: TVOS
DEPLOYMENT_TARGET: 11.0
DEPLOYMENT_TARGET: "11.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/watchos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-latest
env:
PLATFORM: WATCHOS
DEPLOYMENT_TARGET: 5.0
DEPLOYMENT_TARGET: "5.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: macos-latest
env:
PLATFORM: SIMULATOR_WATCHOS
DEPLOYMENT_TARGET: 7.0
DEPLOYMENT_TARGET: "7.0"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
Expand Down

0 comments on commit a5f8dbf

Please sign in to comment.