Browse Source

Update CI to point to master (#754)

Motivation:

The CI only runs the interop tests when pushed to the `nio` branch;
since `master` is the new `nio` we need to update Travis accordingly.

Modifications:

Update the target branch for running interop tests in CI

Result:

Interop tests run when merged to master.
George Barnett 5 years ago
parent
commit
3ff60d0734
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .travis.yml

+ 2 - 2
.travis.yml

@@ -71,9 +71,9 @@ jobs:
 stages:
   # Always run this stage.
   - name: "Test"
-  # Only run when pushing (or merging) to nio.
+  # Only run when pushing (or merging) to master
   - name: "Interoperability Tests"
-    if: type = push AND branch = nio
+    if: type = push AND branch = master
 
 cache:
   apt: true