diff options
author | Arun Kumar <arunkumarm1995@gmail.com> | 2018-05-10 20:43:08 +0800 |
---|---|---|
committer | Arun Kumar <arunkumarm1995@gmail.com> | 2018-05-10 20:43:08 +0800 |
commit | 0f3096b6ef578fe8da29820a17bf79e6d121ccd9 (patch) | |
tree | 43654fc456e7d933088483bcf8a085556a3dbb51 /circle.yml | |
parent | 9b55161f3f90d3b162d395c4d940897ae69a7b8d (diff) | |
download | dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.tar dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.tar.gz dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.tar.bz2 dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.tar.lz dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.tar.xz dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.tar.zst dexon-solidity-0f3096b6ef578fe8da29820a17bf79e6d121ccd9.zip |
Add TERM environment variable for all jobs
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -19,8 +19,6 @@ defaults: - run_tests: &run_tests name: Tests command: scripts/tests.sh --junit_report test_results - environment: - TERM: xterm - solc_artifact: &solc_artifact path: build/solc/solc destination: solc @@ -36,6 +34,8 @@ jobs: build_emscripten: docker: - image: trzeci/emscripten:sdk-tag-1.37.21-64bit + environment: + TERM: xterm steps: - checkout - restore_cache: @@ -68,6 +68,8 @@ jobs: test_emscripten_solcjs: docker: - image: trzeci/emscripten:sdk-tag-1.37.21-64bit + environment: + TERM: xterm steps: - checkout - attach_workspace: @@ -92,6 +94,8 @@ jobs: test_emscripten_external: docker: - image: trzeci/emscripten:sdk-tag-1.37.21-64bit + environment: + TERM: xterm steps: - checkout - attach_workspace: @@ -116,6 +120,8 @@ jobs: build_x86_linux: docker: - image: buildpack-deps:artful + environment: + TERM: xterm steps: - checkout - run: @@ -131,6 +137,8 @@ jobs: build_x86_mac: macos: xcode: "9.0" + environment: + TERM: xterm steps: - checkout - run: @@ -150,6 +158,8 @@ jobs: test_x86_linux: docker: - image: buildpack-deps:artful + environment: + TERM: xterm steps: - checkout - attach_workspace: @@ -167,6 +177,8 @@ jobs: test_x86_mac: macos: xcode: "9.0" + environment: + TERM: xterm steps: - checkout - attach_workspace: |