-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
broke out xcframework gen into seperate workflow
- Loading branch information
Showing
2 changed files
with
29 additions
and
10 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 |
---|---|---|
|
@@ -26,16 +26,6 @@ jobs: | |
run: | | ||
xcodebuild -scheme apm-agent-ios -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15' test | ||
- name: xcodegen | ||
uses: xavierLowmiller/[email protected] | ||
with: | ||
spec: project.yaml | ||
quiet: true | ||
version: '2.41.0' | ||
- name: generate xcframeworks | ||
run : | | ||
./ci/scripts/xcframework.sh | ||
- name: Run package snapshots | ||
run: .ci/scripts/package.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: xcframework builder | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: latest-stable | ||
- uses: actions/checkout@v4 | ||
- name: xcodegen | ||
uses: xavierLowmiller/[email protected] | ||
with: | ||
spec: project.yml | ||
quiet: true | ||
version: '2.41.0' | ||
- name: generate xcframeworks | ||
run : | | ||
./ci/scripts/xcframework.sh |