mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-21 21:52:11 +00:00
### Description <!-- Describe your changes. --> As title. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Works with local onnxruntime-c pod in js/rn/e2e test.
83 lines
2.3 KiB
JavaScript
83 lines
2.3 KiB
JavaScript
/** @type {Detox.DetoxConfig} */
|
|
module.exports = {
|
|
testRunner: {
|
|
args: {
|
|
'$0': 'jest',
|
|
config: 'test/jest.config.js'
|
|
},
|
|
jest: {
|
|
setupTimeout: 120000
|
|
}
|
|
},
|
|
apps: {
|
|
'ios.debug': {
|
|
type: 'ios.app',
|
|
binaryPath: 'ios/build/Build/Products/Debug-iphonesimulator/OnnxruntimeModuleExample.app',
|
|
build: 'xcodebuild ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO -workspace ios/OnnxruntimeModuleExample.xcworkspace -scheme OnnxruntimeModuleExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build'
|
|
},
|
|
'ios.release': {
|
|
type: 'ios.app',
|
|
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/OnnxruntimeModuleExample.app',
|
|
build: 'xcodebuild ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO -workspace ios/OnnxruntimeModuleExample.xcworkspace -scheme OnnxruntimeModuleExample -configuration Release -sdk iphonesimulator -derivedDataPath ios/build'
|
|
},
|
|
'android.debug': {
|
|
type: 'android.apk',
|
|
binaryPath: 'android/app/build/outputs/apk/debug/app-debug.apk',
|
|
build: 'cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
|
|
reversePorts: [
|
|
8081
|
|
]
|
|
},
|
|
'android.release': {
|
|
type: 'android.apk',
|
|
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk',
|
|
build: 'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release'
|
|
}
|
|
},
|
|
devices: {
|
|
simulator: {
|
|
type: 'ios.simulator',
|
|
device: {
|
|
type: 'iPhone 13'
|
|
}
|
|
},
|
|
attached: {
|
|
type: 'android.attached',
|
|
device: {
|
|
adbName: '.*'
|
|
}
|
|
},
|
|
emulator: {
|
|
type: 'android.emulator',
|
|
device: {
|
|
avdName: 'ort_android'
|
|
}
|
|
}
|
|
},
|
|
configurations: {
|
|
'ios.sim.debug': {
|
|
device: 'simulator',
|
|
app: 'ios.debug'
|
|
},
|
|
'ios.sim.release': {
|
|
device: 'simulator',
|
|
app: 'ios.release'
|
|
},
|
|
'android.att.debug': {
|
|
device: 'attached',
|
|
app: 'android.debug'
|
|
},
|
|
'android.att.release': {
|
|
device: 'attached',
|
|
app: 'android.release'
|
|
},
|
|
'android.emu.debug': {
|
|
device: 'emulator',
|
|
app: 'android.debug'
|
|
},
|
|
'android.emu.release': {
|
|
device: 'emulator',
|
|
app: 'android.release'
|
|
}
|
|
}
|
|
};
|