Browse Source

Revert "travis fold env"

This reverts commit 4a12632364.
Daniel Zlotin 6 years ago
parent
commit
e680fb5508
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      .travis.yml

+ 3
- 3
.travis.yml View File

18
       osx_image: xcode9
18
       osx_image: xcode9
19
       language: objective-c
19
       language: objective-c
20
       before_install:
20
       before_install:
21
-        - ./scripts/travis-fold.sh "source ./scripts/env/env.ios.sh"
21
+        - source ./scripts/env/env.ios.sh
22
       script:
22
       script:
23
         - ./scripts/travis-fold.sh "npm run test-unit-ios -- --release"
23
         - ./scripts/travis-fold.sh "npm run test-unit-ios -- --release"
24
         - ./scripts/travis-fold.sh "npm run test-e2e-ios -- --release"
24
         - ./scripts/travis-fold.sh "npm run test-e2e-ios -- --release"
29
       jdk: oraclejdk8
29
       jdk: oraclejdk8
30
       language: java
30
       language: java
31
       before_install:
31
       before_install:
32
-        - ./scripts/travis-fold.sh "source ./scripts/env/env.android.sh"
32
+        - source ./scripts/env/env.android.sh
33
       script:
33
       script:
34
         - ./scripts/travis-fold.sh "npm run test-unit-android -- --release"
34
         - ./scripts/travis-fold.sh "npm run test-unit-android -- --release"
35
         - ./scripts/travis-fold.sh "npm run test-e2e-android -- --release"
35
         - ./scripts/travis-fold.sh "npm run test-e2e-android -- --release"
56
   - v2
56
   - v2
57
 
57
 
58
 install:
58
 install:
59
-  - ./scripts/travis-fold.sh "nvm install 8"
59
+  - nvm install 8
60
   - ./scripts/travis-fold.sh "npm install"
60
   - ./scripts/travis-fold.sh "npm install"
61
   - ./scripts/travis-fold.sh "npm run clean"
61
   - ./scripts/travis-fold.sh "npm run clean"
62
 
62