Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swift 5.10 #146

Merged
merged 6 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
workflow_dispatch:

env:
DEVELOPER_DIR: /Applications/Xcode_15.2.app
DEVELOPER_DIR: /Applications/Xcode_15.4.app

jobs:
publish-docs:
name: Publish Documentation
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Build docs
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ on:
workflow_dispatch:

env:
DEVELOPER_DIR: /Applications/Xcode_15.2.app
DEVELOPER_DIR: /Applications/Xcode_15.4.app

jobs:
test:
name: Test
runs-on: macos-13
runs-on: macos-14
strategy:
matrix:
platform:
Expand All @@ -33,23 +33,23 @@ jobs:

test_examples:
name: Test iOS examples
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Test example iOS
run: scripts/test.sh example-ios ios

benchmark:
name: Benchmark
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Run benchmark test
run: scripts/test.sh benchmark ios

validation:
name: Validation
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Show environments
Expand All @@ -69,4 +69,4 @@ jobs:
- name: Validate example project
run: |
make proj
if [ -n "$(git status --porcelain)" ]; then git diff && echo "Make sure that 'Examples/App.xcodeproj' is formated by 'make proj'."; exit 1; fi
if [ -n "$(git status --porcelain)" ]; then git diff && echo "Make sure that Xcode projects are formated by 'make proj'."; exit 1; fi
Loading