-
Notifications
You must be signed in to change notification settings - Fork 168
/
.travis.yml
21 lines (21 loc) · 906 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: java
services:
- docker
addons:
artifacts:
# if would like to download artifacts ,travis-ci recommend to upload the remote location like aws s3
# set enviroment variable in travis-ci
# ARTIFACTS_KEY=(AWS access key id)
# ARTIFACTS_SECRET=(AWS secret access key)
# ARTIFACTS_BUCKET=(S3 bucket name)
# For more information configuration for this ,please refer https://docs.travis-ci.com/user/uploading-artifacts/
# this example is store to local hard disk travis-ci
target_paths: report/*
debug: true
jobs:
include:
- stage: "Test"
name: "Run Test and report"
script:
- docker pull katalonstudio/katalon
- docker run -t --rm -v "$(pwd)":/katalon/katalon/source katalonstudio/katalon katalon-execute.sh -apiKey=$KATALON_API_KEY -browserType="Chrome" -retry=0 -statusDelay=15 -testSuitePath="Test Suites/TS_RegressionTest"