Skip to content

ci: hook fps on travis #230

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 3 commits into from
Jul 15, 2020
Merged
Changes from 2 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
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ env:
stages:
- name: 'Lint markdown files'
- name: 'Integration tests'
- name: 'Production tests'
- name: 'Unit Tests'
- name: 'NetStandard16'

Expand All @@ -22,7 +23,8 @@ jobs:
notifications:
email: false

- stage: 'Integration tests'
- &integrationtest
stage: 'Integration tests'
env: SDK=csharp SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
cache: false
language: minimal
Expand All @@ -34,6 +36,13 @@ jobs:
- $HOME/travisci-tools/trigger-script-with-status-update.sh
after_success: travis_terminate 0

- <<: *integrationtest
stage: 'Production tests'
env:
SDK=csharp
SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
FULLSTACK_TEST_REPO=ProdTesting

- stage: 'Unit Tests'
language: csharp
dist: xenial
Expand Down