mirror of
https://github.com/appium/appium.git
synced 2026-01-25 11:48:49 -06:00
14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
|
|
unset SUDO_UID
|
|
|
|
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
|