-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: avoid setting unused AVPlayer specific error dimension --------- Co-authored-by: Tomislav Kordic <[email protected]>
- Loading branch information
1 parent
ddac23a
commit 4bda9c2
Showing
55 changed files
with
272 additions
and
471 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,34 @@ | ||
agents: | ||
queue: "macOS-Monterey-12-4" | ||
|
||
steps: | ||
- command: "./scripts/run-baseline-unit-test-pass.sh" | ||
label: ":xcode_simulator: Baseline Unit Test Pass" | ||
- wait | ||
- command: ".buildkite/scripts/dynamic-xcframework.sh" | ||
label: ":xcode: Create Dynamic XCFramework" | ||
artifact_paths: | ||
- "./XCFramework/MUXSDKStats.xcframework.zip" | ||
- wait | ||
- command: "buildkite-agent artifact download XCFramework/MUXSDKStats.xcframework.zip XCFramework && ./scripts/run-tests-swift-package-manager-ventura.sh" | ||
label: ":swift: Test Swift Package Manager Example" | ||
retry: | ||
automatic: true | ||
- wait | ||
- command: ".buildkite/scripts/static-xcframework.sh" | ||
label: ":xcode: Create Static XCFramework" | ||
artifact_paths: | ||
- "./XCFramework/MUXSDKStats-static.xcframework.zip" | ||
- wait | ||
- command: "buildkite-agent artifact download XCFramework/MUXSDKStats.xcframework.zip XCFramework && ./scripts/run-tests-cocoapods-ventura.sh" | ||
label: ":cocoapods: Test Cocoapods Example" | ||
retry: | ||
automatic: true | ||
- wait | ||
- command: "./scripts/version-check.sh Mux-Stats-AVPlayer.podspec MUXSDKStats.json" | ||
label: ":clipboard: Validate Version Metadata" | ||
branches: "releases/*" | ||
- command: "./scripts/validate-podspec.sh" | ||
label: ":cocoapods: Validate Podspec" | ||
branches: "releases/*" | ||
|
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,6 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
./scripts/create-dynamic-xcframework.sh | ||
cd XCFramework | ||
zip -ry MUXSDKStats.xcframework.zip MUXSDKStats.xcframework |
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,6 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
./scripts/create-static-xcframework.sh | ||
cd XCFramework | ||
zip -ry MUXSDKStats-static.xcframework.zip MUXSDKStats.xcframework |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.