Skip to content

Commit

Permalink
Merge pull request #16 from Fryguy/simpler_travis
Browse files Browse the repository at this point in the history
Move TEST_REPO into the matrix section by default
  • Loading branch information
agrare authored Nov 20, 2019
2 parents c697cc9 + c4c8159 commit 9ef40e7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ matrix:
fast_finish: true
env:
global:
- TEST_REPO=
- CORE_REPO=
- GEM_REPOS=
matrix:
- TEST_REPO=
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,30 @@ For more information about the variables or more examples, refer to the
#### Testing a single repo in the context of ManageIQ PR 12345

```diff
@@ -11,6 +11,5 @@ matrix:
@@ -14,7 +14,7 @@ matrix:
fast_finish: true
env:
global:
- - TEST_REPO=
- - CORE_REPO=
- - GEM_REPOS=
+ - TEST_REPO=manageiq-ui-classic
+ - CORE_REPO=manageiq@12345
- GEM_REPOS=
matrix:
- - TEST_REPO=
+ - TEST_REPO=manageiq-ui-classic
```

#### Testing multiple repos in the context of ManageIQ PR 12345

```diff
@@ -11,6 +11,7 @@ matrix:
@@ -14,7 +14,8 @@ matrix:
fast_finish: true
env:
global:
- - TEST_REPO=
- - CORE_REPO=
- - GEM_REPOS=
+ - CORE_REPO=manageiq@12345
+ matrix:
- GEM_REPOS=
matrix:
- - TEST_REPO=
+ - TEST_REPO=manageiq-ui-classic
+ - TEST_REPO=manageiq-api
```
Expand Down

0 comments on commit 9ef40e7

Please sign in to comment.