Skip to content

Commit

Permalink
Assemble release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
hellostu committed Oct 16, 2024
1 parent a162b60 commit ae8754f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ jobs:
- name: Install xcpretty
run: gem install xcpretty

# Build the iOS app using Xcode (with xcpretty)
- name: Build iOS App (Debug) with xcpretty
# Build the iOS app using Xcode (with xcpretty, Release)
- name: Build iOS App (Release) with xcpretty
working-directory: apps/external-display-example/ios
run: |
set -o pipefail && xcodebuild \
-workspace externaldisplayexample.xcworkspace \
-scheme externaldisplayexample \
-configuration Debug \
-configuration Release \
-sdk iphonesimulator \
-derivedDataPath build | xcpretty
Expand Down Expand Up @@ -139,14 +139,14 @@ jobs:
- name: Install xcpretty
run: gem install xcpretty

# Build the iOS app using Xcode (with xcpretty)
- name: Build iOS App (Debug) with xcpretty
# Build the iOS app using Xcode (with xcpretty, Release)
- name: Build iOS App (Release) with xcpretty
working-directory: apps/external-display-example/ios
run: |
set -o pipefail && xcodebuild \
-workspace externaldisplayexample.xcworkspace \
-scheme externaldisplayexample \
-configuration Debug \
-configuration Release \
-sdk iphonesimulator \
-derivedDataPath build | xcpretty
Expand Down Expand Up @@ -209,10 +209,10 @@ jobs:
working-directory: apps/external-display-example
run: echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m" >> android/gradle.properties

# Build the APK using Gradle (without running on a device)
# Build the APK using Gradle (Release)
- name: Build Android APK
working-directory: apps/external-display-example/android
run: ./gradlew assembleDebug
run: ./gradlew assembleRelease

build-android-new-arch:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
working-directory: apps/external-display-example
run: echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m" >> android/gradle.properties

# Build the APK using Gradle (without running on a device)
# Build the APK using Gradle (Release)
- name: Build Android APK
working-directory: apps/external-display-example/android
run: ./gradlew assembleDebug
run: ./gradlew assembleRelease

0 comments on commit ae8754f

Please sign in to comment.