Skip to content

ci(benchmarking): Added benchmarking stage #187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jul 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ after_success:
stages:
- 'Linting'
- 'Integration tests'
- 'Benchmarking tests'
- 'Test'

jobs:
Expand All @@ -30,7 +31,8 @@ jobs:
install: "pip install flake8==3.6.0"
script: "flake8"
after_success: travis_terminate 0
- stage: 'Integration Tests'
- &integrationtest
stage: 'Integration tests'
merge_mode: replace
env: SDK=python
cache: false
Expand All @@ -39,8 +41,11 @@ jobs:
before_script:
- mkdir $HOME/travisci-tools && pushd $HOME/travisci-tools && git init && git pull https://[email protected]/optimizely/travisci-tools.git && popd
script:
- "$HOME/travisci-tools/fsc-trigger/trigger_fullstack-sdk-compat.sh"
- $HOME/travisci-tools/trigger-script-with-status-update.sh
after_success: travis_terminate 0
- <<: *integrationtest
stage: 'Benchmarking tests'
env: SDK=python FULLSTACK_TEST_REPO=Benchmarking
- stage: 'Test'
dist: xenial
python: "3.7"