Skip to content

Commit

Permalink
chore: ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyDaddy committed Nov 28, 2023
1 parent ea3671f commit 4a1a15c
Show file tree
Hide file tree
Showing 7 changed files with 270 additions and 108 deletions.
146 changes: 146 additions & 0 deletions .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
name: Android Build and Test
on:
pull_request:
types: [opened, reopened]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
android-build:
runs-on: ubuntu-latest

steps:
- name: Checkout the code
uses: actions/checkout@v2

- name: Setup node 16
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install dependencies
run: |
npm install
cd example
npm install
- uses: actions/cache@v2
name: Cache node_modules
with:
path: example/node_modules
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-nodeModules-
- uses: actions/cache@v2
name: Cache outter node_modules
with:
path: node_modules
key: ${{ runner.os }}-outterNodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-outterNodeModules-
- uses: actions/cache@v2
name: Cache Gradle dependencies
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}

- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11

- name: Build APK
run: |
npm run prepack
cd example/android
./gradlew assembleRelease
mv app/build/outputs/apk/release/app-release.apk app-release-${{ github.sha }}.apk
ls
pwd
echo ${{ github.workspace }}
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: app-release-${{ github.sha }}.apk
path: example/android/app-release-${{ github.sha }}.apk

android-test:
runs-on: macos-latest
needs: android-build
strategy:
matrix:
api-level: [24, 25, 29, 30, 31]
target: [default]

steps:
- name: Checkout the code
uses: actions/checkout@v2

- name: Setup node 16
uses: actions/setup-node@v3
with:
node-version: '16'

- uses: actions/cache@v2
name: Cache node_modules
with:
path: example/node_modules
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-nodeModules-
- uses: actions/cache@v2
name: Cache outter node_modules
with:
path: node_modules
key: ${{ runner.os }}-outterNodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-outterNodeModules-
- uses: actions/cache@v2
name: Cache Gradle dependencies
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}

- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11

- name: Run detekt
run: |
cd example/android
./gradlew detektCheck
- name: Run unit tests
run: |
cd example/android
./gradlew test --stacktrace
- name: Instrumentation Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
target: ${{ matrix.target }}
arch: x86
profile: Nexus 6
script: |
cd example/android
./gradlew connectedCheck --stacktrace
- name: Upload Reports
uses: actions/upload-artifact@v2
with:
name: Test-Reports
path: example/android/app/build/reports
if: always()
53 changes: 0 additions & 53 deletions .github/workflows/build-apk.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/ci.yml

This file was deleted.

111 changes: 111 additions & 0 deletions .github/workflows/ios-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
name: iOS Build and Test
on:
pull_request:
types: [opened, reopened]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
ios-install-dep:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Setup node 16
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: |
npm install
cd example
npm install
- uses: actions/cache@v2
name: Cache node_modules
with:
path: example/node_modules
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-nodeModules-
- uses: actions/cache@v2
name: Cache outter node_modules
with:
path: node_modules
key: ${{ runner.os }}-outterNodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-outterNodeModules-
ios-build-test:
runs-on: macos-latest
needs: ios-install-dep
strategy:
matrix:
cocoapods: ['1.10.1', '1.11.0', '1.14.3']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Install Cocoapods
run: gem install cocoapods -v ${{ matrix.cocoapods }}
- name: Setup node 16
uses: actions/setup-node@v3
with:
node-version: '16'

- uses: actions/cache@v2
name: Cache node_modules
with:
path: example/node_modules
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-nodeModules-
- uses: actions/cache@v2
name: Cache outter node_modules
with:
path: node_modules
key: ${{ runner.os }}-outterNodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-outterNodeModules-
- name: CocoaPod Install
run: |
cd example/ios
pod install
- name: Cache Pods
id: cache-pods
uses: actions/cache@v2
env:
cache-name: cache-pods-${{ matrix.cocoapods }}
with:
path: example/ios/Pods
key: ${{ runner.os }}-pods-${{ env.cache-name }}-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-${{ env.cache-name }}-
- name: Install Pods
if: steps.cache-pods.outputs.cache-hit != 'true'
run: |
cd example/ios
pod cache clean --all
pod install
- name: Install xcpretty
run: gem install xcpretty

- name: Build
run: |
cd example/ios
xcodebuild -workspace ImageMarkerExample.xcworkspace -scheme ImageMarkerExample -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 12' | xcpretty
- name: Test
run: |
cd example/ios
xcodebuild -workspace ImageMarkerExample.xcworkspace -scheme ImageMarkerExample -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 12' test | xcpretty
5 changes: 5 additions & 0 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://dl.google.com/dl/android/maven2' }
maven { url "https://repository.jboss.org/maven2" }
maven { url 'https://maven.google.com' }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath('com.android.tools.build:gradle:7.4.2')
Expand Down
2 changes: 1 addition & 1 deletion ios/RCTImageMarker/ImageMarker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public final class ImageMarker: NSObject, RCTBridgeModule {
let images = try await withThrowingTaskGroup(of: (Int, UIImage).self) { group in
for (index, img) in imageOptions.enumerated() {
group.addTask {
try await withUnsafeThrowingContinuation { continuation in
try await withUnsafeThrowingContinuation { continuation -> Void in
if Utils.isBase64(img.uri) {
if let image = UIImage.transBase64(img.uri) {
continuation.resume(returning: (index, image))
Expand Down
Loading

0 comments on commit 4a1a15c

Please sign in to comment.