mirror of
https://github.com/appium/appium.git
synced 2026-05-01 16:00:20 -05:00
14 lines
246 B
Bash
Executable File
14 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
|
|
export SUDO_UID=0
|
|
|
|
source ./ci/env
|
|
./ci/show-env.sh
|
|
|
|
if [[ $CI_CONFIG == 'unit' ]]; then
|
|
npm test
|
|
elif [[ $CI_CONFIG == 'build' ]]; then
|
|
./reset.sh --hardcore --dev --ios --android --selendroid --gappium --verbose
|
|
fi
|