Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
branches:
- "**"
env:
CI_XCODE_11: /Applications/Xcode_11.7.app/Contents/Developer
CI_XCODE_14: /Applications/Xcode_14.2.app/Contents/Developer
jobs:
tests:
Expand All @@ -24,9 +23,9 @@ jobs:
- test:twitter_utils:ios
- test:parseui:all
- test:parse_live_query:all
- package:release
- build:starters
fail-fast: false
runs-on: ${{ (matrix.script == 'package:release' && 'macos-11') || 'macos-12' }}
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
Expand Down Expand Up @@ -68,7 +67,7 @@ jobs:
- name: Build-Test
run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake ${{ matrix.script }}
env:
DEVELOPER_DIR: ${{ (matrix.script == 'package:release' && env.CI_XCODE_11) || env.CI_XCODE_14 }}
DEVELOPER_DIR: ${{ env.CI_XCODE_14 }}
- name: Generate Environment Variables
if: ${{ always() }}
env:
Expand Down
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ For analyzing bugs, creating bug fixes and features we recommend to clone this r
```
bundle exec rake test:ios
```
5. Ensure the project builds. You can use the [Starter Projects](https://github.com/dplewis/Parse-SDK-iOS-OSX/tree/master/ParseStarterProject) to perform integration tests.
```
bundle exec rake build:starters
```
Check the [Rakefile](Rakefile) and the [GitHub workflows](.github/workflows) for more information.

# Bugs
Expand Down
43 changes: 43 additions & 0 deletions Parse.xcworkspace/xcshareddata/swiftpm/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading