diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-24 13:56:00 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:02 +0800 |
commit | 4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390 (patch) | |
tree | efca238f9aee856d73ac0dd6eb248bfb97ae0ce5 | |
parent | 81adde59380ce9af292d3a00cdbd57837f06da46 (diff) | |
download | dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.tar dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.tar.gz dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.tar.bz2 dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.tar.lz dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.tar.xz dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.tar.zst dexon-4ee5f6f8ef0b7fef535c158f64c6d0ff9f055390.zip |
ci: move smoke-test to PR test
-rw-r--r-- | .travis.yml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml index 66d15cfac..0aeea8330 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,6 +64,23 @@ matrix: script: - go run build/ci.go lint + - os: osx + go: 1.11.x + env: + - smoke-test + git: + submodules: false + script: + - PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig make all + - cd test + - ./run_test.sh --ignore-log + - cd .. + - ./build/fullnode-test.sh + addons: + homebrew: + packages: + - ethereum + # This builder does the Ubuntu PPA upload #- if: type = push # os: linux @@ -235,23 +252,6 @@ matrix: submodules: false script: - go run build/ci.go purge -store dexon-builds -days 14 - - if: type = push - os: osx - go: 1.11.x - env: - - smoke-test - git: - submodules: false - script: - - PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig make all - - cd test - - ./run_test.sh --ignore-log - - cd .. - - ./build/fullnode-test.sh - addons: - homebrew: - packages: - - ethereum before_install: - openssl aes-256-cbc -K $encrypted_556a2b2ff7f6_key -iv $encrypted_556a2b2ff7f6_iv -in .ci/DEXON-7548b3622930.json.enc -out ./DEXON-7548b3622930.json -d |