-
-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
40 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow runs xcodebuild on every target to make sure it compiles | ||
|
||
# https://github.com/actions/virtual-environments/issues/551#issuecomment-974816804 | ||
name: Build iOS 12 | ||
|
||
on: | ||
push: | ||
branches: [ legacy-projects ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build all supported targets | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: 'legacy-projects' | ||
|
||
- name: Copy iOS 12.4 simruntime | ||
run: | | ||
sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes | ||
sudo ln -s /Applications/Xcode_10.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 12.4.simruntime | ||
|
||
- name: Run script | ||
env: | ||
DESTINATION: 'platform=iOS Simulator,name=iPhone 8,OS=12.4' | ||
run: | | ||
ls /Library/Developer/CoreSimulator/Profiles/Runtimes | ||
./scripts/build_platforms.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# This workflow will rebase legacy-projects branch on new pushes to master | ||
# This workflow will rebase legacy-projects branch on new pushes to main | ||
|
||
name: Rebase branch legacy-projects | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
branches: [ main ] | ||
|
||
workflow_dispatch: | ||
|
||
|
@@ -22,5 +22,5 @@ jobs: | |
USER_NAME: fermoya | ||
USER_EMAIL: [email protected] | ||
OUTDATED_BRANCH: legacy-projects | ||
BASE_BRANCH: develop | ||
BASE_BRANCH: main | ||
run: ./scripts/rebase.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters