diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-01-12 16:56:18 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-01-13 11:28:47 +0100 |
| commit | a567c2c598c6c0dcf391e489c95ae19c4d066f6d (patch) | |
| tree | 1764ca4d36b0c661e9addbc013cb721a99bbd5cd /.github/workflows | |
| parent | 109fe21d049305c7f2a191b811976236b44917d5 (diff) | |
| download | mullvadvpn-a567c2c598c6c0dcf391e489c95ae19c4d066f6d.tar.xz mullvadvpn-a567c2c598c6c0dcf391e489c95ae19c4d066f6d.zip | |
Try splitting too long line in iOS CI yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ios.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 8264fe304e..be6eb8ec1f 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -51,9 +51,13 @@ jobs: go-version: 1.18.5 - name: Prepare iOS simulator + # yamllint disable rule:line-length run: | sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - sudo ln -s /Applications/Xcode_11.7.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 13.7.simruntime + sudo ln -s \ + /Applications/Xcode_11.7.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime \ + /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 13.7.simruntime + # yamllint enable rule:line-length - name: Configure Xcode project run: | |
