billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=026bf7f1c8e84bce40319741e3bf2063a669187b
commit 026bf7f1c8e84bce40319741e3bf2063a669187b Author: Boris Faure <bill...@gmail.com> Date: Sat Jan 1 21:47:36 2022 +0100 ci: fix shell wrapping --- .circleci/config.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72f5061..1a94ccd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,9 +4,9 @@ jobs: checkout_code: docker: - image: borisfaure/terminology-ci:latest - shell: /bin/sh -leo pipefail environment: - - BASH_ENV: /etc/profile + - COLUMNS: 150 + - TERM: xterm-256color steps: - run: | cd /terminology @@ -27,9 +27,9 @@ jobs: build_and_test_debug_gcc_efl_latest: docker: - image: borisfaure/terminology-ci:latest - shell: /bin/sh -leo pipefail environment: - - BASH_ENV: /etc/profile + - COLUMNS: 150 + - TERM: xterm-256color steps: - restore_cache: key: checkout-{{ .Environment.CIRCLE_SHA1 }} @@ -69,6 +69,9 @@ jobs: build_and_test_release_gcc_efl_latest: docker: - image: borisfaure/terminology-ci:latest + environment: + - COLUMNS: 150 + - TERM: xterm-256color steps: - restore_cache: key: checkout-{{ .Environment.CIRCLE_SHA1 }} @@ -97,6 +100,8 @@ jobs: - image: borisfaure/terminology-ci:latest environment: - CC: clang + - COLUMNS: 150 + - TERM: xterm-256color steps: - restore_cache: key: checkout-{{ .Environment.CIRCLE_SHA1 }} @@ -117,6 +122,8 @@ jobs: environment: - CC: clang - CFLAGS: -O0 -pipe -g -fno-omit-frame-pointer -fsanitize=undefined,float-divide-by-zero,unsigned-integer-overflow,implicit-conversion,local-bounds,nullability -fno-sanitize-recover=undefined,float-divide-by-zero,unsigned-integer-overflow,implicit-conversion,local-bounds,nullability + - COLUMNS: 150 + - TERM: xterm-256color steps: - restore_cache: key: checkout-{{ .Environment.CIRCLE_SHA1 }} --