-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
83 additions
and
2 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 |
---|---|---|
|
@@ -34,3 +34,84 @@ jobs: | |
with: | ||
name: error-report | ||
path: build-reports.zip | ||
|
||
|
||
build-android-multiplatform-sample: | ||
name: Build Android Multiplatform Sample | ||
runs-on: ubuntu-latest | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 17 | ||
|
||
- uses: gradle/[email protected] | ||
with: | ||
gradle-home-cache-cleanup: true | ||
|
||
- name: Build Android Sample | ||
run: ./gradlew :sample:androidApp:assembleRelease | ||
|
||
build-android-sample: | ||
name: Build Android Sample | ||
runs-on: ubuntu-latest | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 17 | ||
|
||
- uses: gradle/[email protected] | ||
with: | ||
gradle-home-cache-cleanup: true | ||
|
||
- name: Build Android Sample | ||
run: ./gradlew :sampleandroid:assembleRelease | ||
|
||
build-desktop-app: | ||
name: Build Desktop App | ||
runs-on: ubuntu-latest | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 17 | ||
|
||
- uses: gradle/[email protected] | ||
with: | ||
gradle-home-cache-cleanup: true | ||
|
||
- name: Build Desktop App | ||
run: ./gradlew :sample:desktopApp:packageDistributionForCurrentOS | ||
|
||
build-ios-sample: | ||
name: Build iOS Sample | ||
runs-on: macos-latest | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 17 | ||
|
||
- uses: gradle/[email protected] | ||
with: | ||
gradle-home-cache-cleanup: true | ||
|
||
- name: Build iOS Sample | ||
run: xcodebuild -project sample/iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 15 Pro' build |
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
Binary file modified
BIN
+2.74 KB
(100%)
...pp.xcodeproj/project.xcworkspace/xcuserdata/mg.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.