Skip to content
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
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'
- name: 'NetStandard20'
Expand All @@ -24,7 +25,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 @@ -36,6 +38,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