-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ⬆️ Update CI * 🔧 Bump deployment target to iOS 12 * 🔧 Update CI device * 🚨 Fix lint warnings * 🔧 Fix macOS deployment target * 🔧 Upload result bundle for failed tests * 🔧 Update host application for iOS tests * 🔧 Install yeetd before tests * 🔧 Comment out suspicious FC test * 🔧 Try to fix flaky FC test * 🔧 Improve CI jobs
- Loading branch information
Showing
20 changed files
with
47 additions
and
78 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
name: Carthage | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Build | ||
run: carthage build --no-skip-current --cache-builds --use-xcframeworks | ||
|
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 |
---|---|---|
|
@@ -8,14 +8,14 @@ jobs: | |
name: Swiftlint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- name: GitHub Action for SwiftLint | ||
uses: norio-nomura/[email protected] | ||
changelog: | ||
name: Changelog | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- name: Changelog Reminder | ||
uses: peterjgrainger/[email protected] | ||
with: | ||
|
@@ -26,7 +26,7 @@ jobs: | |
name: Podspec | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- name: Install Bundler dependencies | ||
run: bundle install | ||
- name: Lint podspec | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
name: Upload Carthage binary | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Build | ||
run: carthage build --no-skip-current --cache-builds --use-xcframeworks | ||
|
@@ -21,7 +21,7 @@ jobs: | |
mv Carthage/Build/*.xcframework /tmp/ACKategories | ||
cd /tmp | ||
zip -r "$DST/"ACKategories.xcframework.zip ACKategories | ||
- uses: xresloader/upload-to-github-release@v1 | ||
- uses: xresloader/upload-to-github-release@v1.3.12 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -33,7 +33,7 @@ jobs: | |
name: Push podspec to Cocoapods trunk | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Install gems | ||
run: bundle install | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,9 +7,19 @@ jobs: | |
name: Run tests | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Run iOS tests | ||
run: set -o pipefail && xcodebuild test -scheme ACKategories-iOS -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max,OS=latest' ONLY_ACTIVE_ARCH=YES | xcpretty | ||
run: set -o pipefail && xcodebuild test -scheme ACKategories-iOS -resultBundlePath Tests-iOS.xcresult -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 15 Pro Max,OS=latest" ONLY_ACTIVE_ARCH=YES | xcpretty | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: Tests-iOS.xcresult | ||
path: Tests-iOS.xcresult | ||
- name: Run macOS tests | ||
run: set -o pipefail && xcodebuild test -scheme ACKategoriesCore -destination 'platform=OS X,arch=x86_64' | xcpretty | ||
run: set -o pipefail && xcodebuild test -scheme ACKategoriesCore -resultBundlePath Tests-macOS.xcresult -destination 'platform=OS X,arch=x86_64' | xcpretty | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: Tests-macOS.xcresult | ||
path: Tests-macOS.xcresult |
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 +1 @@ | ||
14.3.1 | ||
15.0.1 |
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
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 |
---|---|---|
|
@@ -10,9 +10,9 @@ Tools, cocoa subclasses and extensions we love to use at Ackee. | |
s.author = { 'Ackee' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/AckeeCZ/ACKategories.git', :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/ackeecz' | ||
s.swift_version = '5.1.3' | ||
s.swift_version = '5.9' | ||
|
||
s.ios.deployment_target = '11.0' | ||
s.ios.deployment_target = '12.0' | ||
s.osx.deployment_target = '10.13' | ||
|
||
s.source_files = 'ACKategoriesCore/**/*.swift' | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,4 +63,4 @@ extension Publishers { | |
zipped.subscribe(subscriber) | ||
} | ||
} | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.