Sending build context to Docker daemon 23.04kB Step 1/24 : FROM vauxoo/odoo-80-image-shippable-auto latest: Pulling from vauxoo/odoo-80-image-shippable-auto Digest: sha256:db2897f695d4668818a1e9cb7b72482711f27d06a829d9216f2d6074b4536b61 Status: Image is up to date for vauxoo/odoo-80-image-shippable-auto:latest ---> ede78ea2ca48 Step 2/24 : COPY files/entrypoint.sh /entrypoint.sh ---> 93e815ce955e Step 3/24 : RUN chown -R odoo:odoo /entrypoint.sh ---> Running in 557354ea6823 Removing intermediate container 557354ea6823 ---> f937bc9afb33 Step 4/24 : COPY files/rvm_env.sh /rvm_env.sh ---> 40e19a34bd45 Step 5/24 : RUN chown -R odoo:odoo /rvm_env.sh ---> Running in a5fb5f354ab6 Removing intermediate container a5fb5f354ab6 ---> 768db9caaba1 Step 6/24 : ARG GITHUB_TOKEN ---> Running in 2968fdf61839 Removing intermediate container 2968fdf61839 ---> 6331d9d0fb93 Step 7/24 : ENV GITHUB_TOKEN=$GITHUB_TOKEN ---> Running in 45f2b9b1aba0 Removing intermediate container 45f2b9b1aba0 ---> 52690d7b31ce Step 8/24 : ENV HOME=/home/odoo ---> Running in 24c40cebb600 Removing intermediate container 24c40cebb600 ---> 5a6831dfbd2e Step 9/24 : COPY .ssh $HOME/.ssh ---> 39381f1bfa1a Step 10/24 : COPY ./files/install /install ---> b6e280c0fa12 Step 11/24 : COPY ./files/script /script ---> d3604a3f6fb7 Step 12/24 : RUN chown -R odoo:odoo $HOME/.ssh;chown -R odoo:odoo /install;chown -R odoo:odoo /script; ---> Running in ff50df1d435b Removing intermediate container ff50df1d435b ---> c4222461c331 Step 13/24 : RUN apt-get update; apt-get install expect-dev openssl antiword ---> Running in 1cdc0a271580 Get:1 http://deb.nodesource.com trusty InRelease [3,914 B] Get:2 http://deb.nodesource.com trusty/main amd64 Packages [964 B] Get:3 http://ppa.launchpad.net trusty InRelease [15.4 kB] Ign http://archive.ubuntu.com trusty InRelease Get:4 http://archive.ubuntu.com trusty-updates InRelease [65.9 kB] Get:5 http://apt.postgresql.org trusty-pgdg InRelease [56.5 kB] Get:6 http://ppa.launchpad.net trusty InRelease [15.5 kB] Get:7 http://ppa.launchpad.net trusty InRelease [20.8 kB] Get:8 http://archive.ubuntu.com trusty-security InRelease [65.9 kB] Get:9 http://apt.postgresql.org trusty-pgdg/main amd64 Packages [201 kB] Get:10 http://archive.ubuntu.com trusty Release.gpg [933 B] Get:11 http://archive.ubuntu.com trusty-updates/main amd64 Packages [1,460 kB] Get:12 http://ppa.launchpad.net trusty InRelease [15.5 kB] Get:13 http://ppa.launchpad.net trusty InRelease [15.9 kB] Get:14 http://archive.ubuntu.com trusty-updates/universe amd64 Packages [671 kB] Get:15 http://ppa.launchpad.net trusty/main amd64 Packages [10.6 kB] Get:16 http://archive.ubuntu.com trusty-updates/multiverse amd64 Packages [16.1 kB] Get:17 http://ppa.launchpad.net trusty/main amd64 Packages [2,941 B] Get:18 http://archive.ubuntu.com trusty-security/main amd64 Packages [1,032 kB] Get:19 http://archive.ubuntu.com trusty-security/universe amd64 Packages [378 kB] Get:20 http://ppa.launchpad.net trusty/main amd64 Packages [3,533 B] Get:21 http://archive.ubuntu.com trusty-security/multiverse amd64 Packages [4,730 B] Get:22 http://archive.ubuntu.com trusty Release [58.5 kB] Get:23 http://ppa.launchpad.net trusty/main amd64 Packages [23.2 kB] Get:24 http://archive.ubuntu.com trusty/main amd64 Packages [1,743 kB] Get:25 http://archive.ubuntu.com trusty/universe amd64 Packages [7,589 kB] Get:26 http://ppa.launchpad.net trusty/main amd64 Packages [5,212 B] Get:27 http://archive.ubuntu.com trusty/multiverse amd64 Packages [169 kB] Fetched 13.6 MB in 2s (5,272 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... expect-dev is already the newest version. antiword is already the newest version. openssl is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded. Removing intermediate container 1cdc0a271580 ---> 86b9cbabcb2f Step 14/24 : RUN echo "TRAVIS_PYTHON_VERSION=3.6" >> /etc/environment ---> Running in 5aa30e8c057e Removing intermediate container 5aa30e8c057e ---> 531ca4e956ea Step 15/24 : USER odoo ---> Running in 6d9c88525e06 Removing intermediate container 6d9c88525e06 ---> a51ebf9af493 Step 16/24 : ENV TRAVIS_PYTHON_VERSION=3.6 ---> Running in 629925bbe270 Removing intermediate container 629925bbe270 ---> b29153b1f4d1 Step 17/24 : ENV TRAVIS_REPO_SLUG=vauxoo/enterprise-pe ---> Running in 9a1e84828bb2 Removing intermediate container 9a1e84828bb2 ---> 3f7bd8caffe4 Step 18/24 : ENV TRAVIS_BUILD_DIR=${HOME}/build/${TRAVIS_REPO_SLUG} ---> Running in 32c6a94ba514 Removing intermediate container 32c6a94ba514 ---> 5d421f5c2a7a Step 19/24 : RUN git init ${TRAVIS_BUILD_DIR} && cd ${TRAVIS_BUILD_DIR} && git remote add origin git@git.vauxoo.com:vauxoo/enterprise-pe.git && git fetch --update-head-ok -p origin '+refs/heads/12.0:refs/heads/12.0' && git checkout -qf 12.0 && git config --global user.email "None" && git config --global user.name "None" || true ---> Running in 64442c5b2d30 Initialized empty Git repository in /home/odoo/build/vauxoo/enterprise-pe/.git/ From git.vauxoo.com:vauxoo/enterprise-pe * [new branch] 12.0 -> 12.0  * [new branch] 12.0 -> origin/12.0 Removing intermediate container 64442c5b2d30 ---> 07c10ba43031 Step 20/24 : RUN cat ${HOME}/.ssh/id_rsa.pub | tee -a ${HOME}/.ssh/authorized_keys ---> Running in 5606c5ad396a ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC8J1VtxZGbkG8qgGzlszOQ3XMtk+a/Y0axsc6jovFjiGXfQheaxty4Uten+2xDlXL2/CFeCcf7MUUhc+AnH6fQVPEcSPClmSHvWN2imO2CJj9D9elpa/m1OFC9EPNgHuPv1FoE0AUphDb/pwhBg5r6kjcFXwpuO9BYJ53g198uPuJERc5FgPr0bTJeIyS5OAKTiuKpfpstJdFTqFjUBGvKMVvH4MkMab3vBqXdEqoDQ+4iE1KLDypw7poc6A6SSH9DmIILkRt25pnSklDOTYHVajcle6MiUR7qnle5/nRiXAvW6YbnozdJPUaGeerwoStKFT3MzhPBqmIY8LRy4RFx Removing intermediate container 5606c5ad396a ---> 0d3a634adc02 Step 21/24 : ENV LINT_CHECK="0" TESTS="0" PSQL_VERSION="10" TESTS="1" ---> Running in 5a837bc9b5ac Removing intermediate container 5a837bc9b5ac ---> e4974b4032c4 Step 22/24 : WORKDIR ${TRAVIS_BUILD_DIR} ---> Running in b95d9e386a1e Removing intermediate container b95d9e386a1e ---> 7587a1abd0c7 Step 23/24 : RUN /bin/bash -c "source ${REPO_REQUIREMENTS}/virtualenv/python3.6/bin/activate && source ${REPO_REQUIREMENTS}/virtualenv/nodejs/bin/activate && source /rvm_env.sh && /install" ---> Running in 523c0582c01e Cloning into '/home/odoo/maintainer-quality-tools'... Collecting PyPDF2 Downloading PyPDF2-1.26.0.tar.gz (77 kB) Collecting ofxparse Downloading ofxparse-0.20.tar.gz (53 kB) Collecting beautifulsoup4 Downloading beautifulsoup4-4.9.3-py3-none-any.whl (115 kB) Requirement already satisfied, skipping upgrade: lxml in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from ofxparse) (4.5.2) Requirement already satisfied, skipping upgrade: six in /usr/local/lib/python3.6/dist-packages (from ofxparse) (1.15.0) Collecting soupsieve>1.2; python_version >= "3.0" Downloading soupsieve-2.0.1-py3-none-any.whl (32 kB) Building wheels for collected packages: PyPDF2, ofxparse Building wheel for PyPDF2 (setup.py): started Building wheel for PyPDF2 (setup.py): finished with status 'done' Created wheel for PyPDF2: filename=PyPDF2-1.26.0-py3-none-any.whl size=61085 sha256=52e82a5184c18a3eb462134e304415cc5e9ec6983d20dc39239a40ab806a4033 Stored in directory: /home/odoo/.cache/pip/wheels/97/28/4b/142b7d8c98eeeb73534b9c5b6558ddd3bab3c2c8192aa7ab30 Building wheel for ofxparse (setup.py): started Building wheel for ofxparse (setup.py): finished with status 'done' Created wheel for ofxparse: filename=ofxparse-0.20-py3-none-any.whl size=35382 sha256=7d8871a09c3204f6bf68e96db3d3e27ea3857733e84915797b0575cc79ff2f24 Stored in directory: /home/odoo/.cache/pip/wheels/1e/3b/f2/5ca904c2e5d0fd2b0de9ae9a9797f497df072438102021b2fe Successfully built PyPDF2 ofxparse Installing collected packages: PyPDF2, soupsieve, beautifulsoup4, ofxparse Successfully installed PyPDF2-1.26.0 beautifulsoup4-4.9.3 ofxparse-0.20 soupsieve-2.0.1 WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command.  : ${TRAVIS_BUILD_DIR:="${CI_PROJECT_DIR}"} # If unset, takes it from GitLab CI if [ "${LINT_CHECK}" != "0" ]; then if [ -f "${HOME}/.nvm/nvm.sh" ]; then # Update nodejs v6.latest required by eslint # Using nvm of travis CURRENT_NODE=$(which node)  source ${HOME}/.nvm/nvm.sh nvm install 6 ln -sf $(nvm which 6) $CURRENT_NODE fi pip install -q QUnitSuite flake8 Click # Install pylint plugin depends without lxml  wget --no-check-certificate https://raw.githubusercontent.com/vauxoo/pylint-odoo/master/requirements.txt -O $(dirname ${BASH_SOURCE[0]})/pylint_odoo_requirements.txt  pip install --upgrade -r $(dirname ${BASH_SOURCE[0]})/pylint_odoo_requirements.txt pip install pbr  pip install --upgrade --no-deps git+https://github.com/vauxoo/pylint-odoo.git # To use last version ever npm install -g eslint # Extra package for pylint-odoo plugin  # Get pylint configuration file of vauxoo  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_vauxoo_light.cfg -O ${HOME}/maintainer-quality-tools/travis/cfg/travis_run_pylint.cfg wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_vauxoo_light_pr.cfg -O ${HOME}/maintainer-quality-tools/travis/cfg/travis_run_pylint_pr.cfg  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_vauxoo_light_beta.cfg -O ${HOME}/maintainer-quality-tools/travis/cfg/travis_run_pylint_beta.cfg  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/.jslintrc -O ${HOME}/maintainer-quality-tools/travis/cfg/.jslintrc # Ugly patch to apply https://github.com/PyCQA/pylint/pull/1055  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_pr1055.patch -O /tmp/pylint_pr1055.patch  patch -f -p0 $(python -c "from __future__ import print_function; from pylint.checkers import similar; print(similar.__file__.rstrip('c'))") -i /tmp/pylint_pr1055.patch fi WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. dirname ${BASH_SOURCE[0]} --2020-11-16 19:42:05-- https://raw.githubusercontent.com/vauxoo/pylint-odoo/master/requirements.txt Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ... Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 334 [text/plain] Saving to: ‘/home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt’  0K    100% 16.7M=0s 2020-11-16 19:42:05 (16.7 MB/s) - ‘/home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt’ saved [334/334] dirname ${BASH_SOURCE[0]} Ignoring Pygments: markers 'python_version < "3"' don't match your environment Ignoring pylint: markers 'python_version < "3"' don't match your environment Requirement already up-to-date: docutils==0.16 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 1)) (0.16) Requirement already up-to-date: isort==4.3.4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 2)) (4.3.4) Collecting lxml>=4.2.3 Downloading lxml-4.6.1-cp36-cp36m-manylinux1_x86_64.whl (5.5 MB) Requirement already up-to-date: polib==1.1.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 4)) (1.1.0) Requirement already up-to-date: Pygments==2.6.1 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 6)) (2.6.1) Requirement already up-to-date: pylint-plugin-utils==0.6 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 7)) (0.6) Requirement already up-to-date: pylint==2.5.3 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (2.5.3) Requirement already up-to-date: restructuredtext_lint==1.3.1 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 10)) (1.3.1) Requirement already up-to-date: rfc3986 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 11)) (1.4.0) Requirement already up-to-date: six in /usr/local/lib/python3.6/dist-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 12)) (1.15.0) Requirement already up-to-date: whichcraft in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 13)) (0.6.1) Requirement already up-to-date: translate-toolkit==2.3 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 15)) (2.3.0) Requirement already satisfied, skipping upgrade: toml>=0.7.1 in /usr/local/lib/python3.6/dist-packages (from pylint==2.5.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (0.10.1) Requirement already satisfied, skipping upgrade: astroid<=2.5,>=2.4.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from pylint==2.5.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (2.4.2) Requirement already satisfied, skipping upgrade: mccabe<0.7,>=0.6 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from pylint==2.5.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (0.6.1) Requirement already satisfied, skipping upgrade: diff-match-patch==20121119 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from translate-toolkit==2.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 15)) (20121119) Requirement already satisfied, skipping upgrade: wrapt~=1.11 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from astroid<=2.5,>=2.4.0->pylint==2.5.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (1.12.1) Requirement already satisfied, skipping upgrade: lazy-object-proxy==1.4.* in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from astroid<=2.5,>=2.4.0->pylint==2.5.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (1.4.3) Requirement already satisfied, skipping upgrade: typed-ast<1.5,>=1.4.0; implementation_name == "cpython" and python_version < "3.8" in /usr/local/lib/python3.6/dist-packages (from astroid<=2.5,>=2.4.0->pylint==2.5.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (1.4.1) Installing collected packages: lxml Attempting uninstall: lxml Found existing installation: lxml 4.5.2 Uninstalling lxml-4.5.2: Successfully uninstalled lxml-4.5.2 Successfully installed lxml-4.6.1 WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. Requirement already satisfied: pbr in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (5.5.0) WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. Collecting git+https://github.com/vauxoo/pylint-odoo.git Cloning https://github.com/vauxoo/pylint-odoo.git to /tmp/pip-req-build-uzlxhi_m Building wheels for collected packages: pylint-odoo Building wheel for pylint-odoo (setup.py): started Building wheel for pylint-odoo (setup.py): finished with status 'done' Created wheel for pylint-odoo: filename=pylint_odoo-0.0.1.dev513-py3-none-any.whl size=86071 sha256=447907472030156cc4cd271ad411bbc67fecb2636639bca7bf5ca3b981724aa3 Stored in directory: /tmp/pip-ephem-wheel-cache-_d6y6be0/wheels/33/aa/aa/c41a67050e06f833ef60a7067a415a2fa7f3849b198fac4b24 Successfully built pylint-odoo Installing collected packages: pylint-odoo Attempting uninstall: pylint-odoo Found existing installation: pylint-odoo 0.0.1.dev513 Uninstalling pylint-odoo-0.0.1.dev513: Successfully uninstalled pylint-odoo-0.0.1.dev513 Successfully installed pylint-odoo-0.0.1.dev513 WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. /.repo_requirements/virtualenv/nodejs/bin/eslint -> /.repo_requirements/virtualenv/nodejs/lib/node_modules/eslint/bin/eslint.js + eslint@7.13.0 updated 4 packages in 6.839s python -c "from __future__ import print_function; from pylint.checkers import similar; print(similar.__file__.rstrip('c'))" patching file /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages/pylint/checkers/similar.py Hunk #1 FAILED at 31. Hunk #2 FAILED at 42. Hunk #3 FAILED at 126. Hunk #4 FAILED at 158. Hunk #5 FAILED at 290. 5 out of 5 hunks FAILED -- saving rejects to file /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages/pylint/checkers/similar.py.rej  # We can exit here and do nothing if this only a LINT check if [ "${TESTS}" != "1" ] && [ "${LINT_CHECK}" == "1" ]; then exit 0 fi # Install less ln -s `which nodejs` $HOME/maintainer-quality-tools/travis/node which nodejs npm install -g less@3.0.4 less-plugin-clean-css npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated har-validator@5.1.5: this library is no longer supported /.repo_requirements/virtualenv/nodejs/bin/lessc -> /.repo_requirements/virtualenv/nodejs/lib/node_modules/less/bin/lessc + less-plugin-clean-css@1.5.1 + less@3.0.4 added 64 packages from 105 contributors in 3.569s  if [ "${WEBSITE_REPO}" == "1" ]; then if [ -f ~/.rvm/scripts/rvm ]; then source ~/.rvm/scripts/rvm else source /usr/local/rvm/scripts/rvm fi rvm install ruby --latest rvm use ruby --latest  # Uninstall current versions to be sure that # the correct version will be installed gem uninstall -aIx bootstrap-sass compass sass  gem install compass bootstrap-sass fi  # Update PhantomJS (v10 compat) if [ "${PHANTOMJS_VERSION}" != "OS" ]; then  npm install --prefix ${TRAVIS_BUILD_DIR} "phantomjs-prebuilt@${PHANTOMJS_VERSION:=latest}"  ln -s "${TRAVIS_BUILD_DIR}/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs" "${HOME}/maintainer-quality-tools/travis/phantomjs" fi npm WARN deprecated phantomjs-prebuilt@2.1.16: this package is now deprecated npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated har-validator@5.1.5: this library is no longer supported  > phantomjs-prebuilt@2.1.16 install /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt > node install.js Considering PhantomJS found at /usr/bin/phantomjs Found PhantomJS at /usr/bin/phantomjs ...verifying PhantomJS detected, but wrong version 1.9.0 @ /usr/bin/phantomjs. Downloading https://github.com/Medium/phantomjs/releases/download/v2.1.1/phantomjs-2.1.1-linux-x86_64.tar.bz2 Saving to /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 Receiving... Received 22866K total. Extracting tar contents (via spawned process) Removing /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt/lib/phantom Copying extracted folder /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2-extract-1605555756305/phantomjs-2.1.1-linux-x86_64 -> /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt/lib/phantom Writing location.js file Done. Phantomjs binary available at /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs npm WARN saveError ENOENT: no such file or directory, open '/home/odoo/build/vauxoo/enterprise-pe/package.json' npm notice created a lockfile as package-lock.json. You should commit this file. npm WARN enoent ENOENT: no such file or directory, open '/home/odoo/build/vauxoo/enterprise-pe/package.json' npm WARN enterprise-pe No description npm WARN enterprise-pe No repository field. npm WARN enterprise-pe No README data npm WARN enterprise-pe No license field.  + phantomjs-prebuilt@2.1.16 added 81 packages from 77 contributors and audited 81 packages in 10.686s 1 package is looking for funding run `npm fund` for details found 0 vulnerabilities  # For backward compatibility, take version from parameter if it's not globally set if [ "x${VERSION}" == "x" ] ; then VERSION="${1}" echo "WARNING: no env variable set for VERSION. Using '${1}'." fi  if [ "x${ODOO_BRANCH}" == "x" ] ; then ODOO_BRANCH=${VERSION} fi  : ${ODOO_REPO:="odoo/odoo"} # default value, if not set IFS="/" read -a REPO <<< "${ODOO_REPO}" # ODOO_URL="https://github.com/${REPO[0]}/${REPO[1]}/archive/${VERSION}.tar.gz" ODOO_URL="https://github.com/${REPO[0]}/${REPO[1]}.git" echo ${REPO_REQUIREMENTS} /.repo_requirements export REMOTE=$(python -c "from __future__ import print_function; print('${REPO[0]}'.lower())") python -c "from __future__ import print_function; print('${REPO[0]}'.lower())" export BRANCH=$(python -c "from __future__ import print_function; print('${ODOO_BRANCH}'.lower())") python -c "from __future__ import print_function; print('${ODOO_BRANCH}'.lower())" export PULL_REQUEST='' # If the branch is a pull request if [[ $BRANCH == *"/"* ]]; then export PULL_REQUEST=$BRANCH export BRANCH=${BRANCH/\//-} fi export ODOO_PATH=${HOME}/${REPO[1]}-${ODOO_BRANCH} echo "Installing Odoo from cache" ODOO_URL="https://github.com/${ODOO_REPO}" Installing Odoo from cache if [ "x${REPO_REQUIREMENTS}" == "x" ] ; then export ODOO_PATH=${HOME}/${REPO[1]}-${BRANCH} else  # chown executed from original image chown `(whoami)`:`(whoami)` -R ${REPO_REQUIREMENTS}/odoo ln -sf ${REPO_REQUIREMENTS}/odoo ${ODOO_PATH} fi  git init ${ODOO_PATH} Reinitialized existing Git repository in /.repo_requirements/odoo/.git/ cd ${ODOO_PATH} git remote add ${REMOTE} ${ODOO_URL} fatal: remote vauxoo-dev already exists.  if [ "x${PULL_REQUEST}" == "x" ] ; then git fetch --depth=1 ${REMOTE} ${ODOO_BRANCH} \  && git config --local --bool core.bare false \ && git checkout -b ${ODOO_BRANCH}-${REMOTE} -qf ${REMOTE}/${ODOO_BRANCH} \ ; git reset --hard ${REMOTE}/${ODOO_BRANCH} else ODOO_URL="https://github.com/${ODOO_REPO}"  # Is a pull request git reset --hard  git fetch --depth=1 ${REMOTE} $PULL_REQUEST/head:${BRANCH}-${REMOTE} \  && git config --local --bool core.bare false \  && git checkout ${BRANCH}-${REMOTE} \  ; fi From https://github.com/vauxoo-dev/odoo * branch 13.0-pre-merge-ubl -> FETCH_HEAD  * [new branch] 13.0-pre-merge-ubl -> vauxoo-dev/13.0-pre-merge-ubl HEAD is now at 3d4513502 [ADD] l10n_pe_edi: add company demo for Peru  echo "x${PHANTOMJS_TESTS}" if [ "x${PHANTOMJS_TESTS}" == "x0" ]; then # Disable phantom tests sed -i "s/'phantomjs'/'disable_phantomjs'/g" ${HOME}/*/openerp/tests/common.py x  sed -i "s/'phantomjs'/'disable_phantomjs'/g" ${HOME}/*/odoo/tests/common.py else # Increase default timeout of all phantom tests  sed -i "s/ login=None, timeout=60, / login=None, timeout=360, /g" ${HOME}/*/openerp/tests/common.py  sed -i "s/ login=None, timeout=60, / login=None, timeout=360, /g" ${HOME}/*/odoo/tests/common.py  # Increase default delay of all phantom tests  sed -i "s/defaultDelay: 50,/defaultDelay: 120,/g" ${HOME}/*/addons/web/static/src/js/tour.js fi sed: can't read /home/odoo/*/openerp/tests/common.py: No such file or directory sed: can't read /home/odoo/*/addons/web/static/src/js/tour.js: No such file or directory  # Workaround to force using system site packages (see https://github.com/Shippable/support/issues/241#issuecomment-57947925) rm -f $VIRTUAL_ENV/lib/python2.7/no-global-site-packages.txt  echo "Installing odoo dependencies" # Odoo <= 7.0 don't have requirements.txt file then the 8.0 file is used by default if [ ! -f ${ODOO_PATH}/requirements.txt ]; then Installing odoo dependencies  wget https://raw.githubusercontent.com/odoo/odoo/8.0/requirements.txt -O ${ODOO_PATH}/requirements.txt fi # Remove python-ldap from odoo requirements because is not a common module used sed -i '/^python-ldap\=\=/d' ${ODOO_PATH}/requirements.txt # Use requests with [security] suffix to fix [Errno 111] Connection refused for old python2.7 versions. sed -i 's/^requests\=\=/requests[security]\=\=/g' ${ODOO_PATH}/requirements.txt  pip install --upgrade pip Collecting pip Downloading pip-20.2.4-py2.py3-none-any.whl (1.5 MB) Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 20.2.3 Uninstalling pip-20.2.3: Successfully uninstalled pip-20.2.3 Successfully installed pip-20.2.4 pip install --no-binary pycparser -r ${ODOO_PATH}/requirements.txt Ignoring gevent: markers 'python_version >= "3.7"' don't match your environment Ignoring gevent: markers 'sys_platform == "win32"' don't match your environment Ignoring greenlet: markers 'python_version >= "3.7"' don't match your environment Ignoring lxml: markers 'sys_platform != "win32" and python_version >= "3.7"' don't match your environment Ignoring lxml: markers 'sys_platform == "win32"' don't match your environment Ignoring Pillow: markers 'sys_platform == "win32" and python_version >= "3.7"' don't match your environment Ignoring psycopg2: markers 'sys_platform == "win32" or python_version >= "3.8"' don't match your environment Ignoring Werkzeug: markers 'sys_platform == "win32"' don't match your environment Ignoring pypiwin32: markers 'sys_platform == "win32"' don't match your environment Collecting Babel==2.6.0 Downloading Babel-2.6.0-py2.py3-none-any.whl (8.1 MB) Requirement already satisfied: chardet==3.0.4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 2)) (3.0.4) Collecting decorator==4.3.0 Downloading decorator-4.3.0-py2.py3-none-any.whl (9.2 kB) Collecting docutils==0.14 Downloading docutils-0.14-py3-none-any.whl (543 kB) Collecting ebaysdk==2.1.5 Downloading ebaysdk-2.1.5.tar.gz (42 kB) Collecting feedparser==5.2.1 Downloading feedparser-5.2.1.tar.bz2 (192 kB) Collecting gevent==1.1.2 Downloading gevent-1.1.2.tar.gz (2.0 MB) Collecting greenlet==0.4.10 Downloading greenlet-0.4.10.tar.gz (57 kB) Collecting html2text==2018.1.9 Downloading html2text-2018.1.9-py3-none-any.whl (21 kB) Collecting Jinja2==2.10.1 Downloading Jinja2-2.10.1-py2.py3-none-any.whl (124 kB) Collecting libsass==0.17.0 Downloading libsass-0.17.0-cp36-cp36m-manylinux1_x86_64.whl (9.2 MB) Collecting lxml==3.7.1 Downloading lxml-3.7.1.tar.gz (3.8 MB) Collecting Mako==1.0.7 Downloading Mako-1.0.7.tar.gz (564 kB) Collecting MarkupSafe==1.1.0 Downloading MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl (27 kB) Collecting mock==2.0.0 Downloading mock-2.0.0-py2.py3-none-any.whl (56 kB) Collecting num2words==0.5.6 Downloading num2words-0.5.6-py2.py3-none-any.whl (64 kB) Collecting ofxparse==0.19 Downloading ofxparse-0.19.tar.gz (54 kB) Collecting passlib==1.7.1 Downloading passlib-1.7.1-py2.py3-none-any.whl (498 kB) Collecting Pillow==5.4.1 Downloading Pillow-5.4.1-cp36-cp36m-manylinux1_x86_64.whl (2.0 MB) Requirement already satisfied: polib==1.1.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 26)) (1.1.0) Collecting psutil==5.6.6 Downloading psutil-5.6.6.tar.gz (447 kB) Collecting psycopg2==2.7.7 Downloading psycopg2-2.7.7-cp36-cp36m-manylinux1_x86_64.whl (2.7 MB) Collecting pydot==1.4.1 Downloading pydot-1.4.1-py2.py3-none-any.whl (19 kB) Collecting pyparsing==2.2.0 Downloading pyparsing-2.2.0-py2.py3-none-any.whl (56 kB) Requirement already satisfied: PyPDF2==1.26.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 32)) (1.26.0) Requirement already satisfied: pyserial==3.4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 33)) (3.4) Collecting python-dateutil==2.7.3 Downloading python_dateutil-2.7.3-py2.py3-none-any.whl (211 kB) Collecting pytz==2019.1 Downloading pytz-2019.1-py2.py3-none-any.whl (510 kB) Collecting pyusb==1.0.2 Downloading pyusb-1.0.2.tar.gz (54 kB) Collecting qrcode==6.1 Downloading qrcode-6.1-py2.py3-none-any.whl (31 kB) Collecting reportlab==3.5.13 Downloading reportlab-3.5.13-cp36-cp36m-manylinux1_x86_64.whl (2.6 MB) Collecting requests[security]==2.21.0 Downloading requests-2.21.0-py2.py3-none-any.whl (57 kB) Collecting zeep==3.2.0 Downloading zeep-3.2.0-py2.py3-none-any.whl (98 kB) Collecting vatnumber==1.2 Downloading vatnumber-1.2.tar.gz (19 kB) Collecting vobject==0.9.6.1 Downloading vobject-0.9.6.1.tar.gz (58 kB) Collecting Werkzeug==0.14.1 Downloading Werkzeug-0.14.1-py2.py3-none-any.whl (322 kB) Collecting XlsxWriter==1.1.2 Downloading XlsxWriter-1.1.2-py2.py3-none-any.whl (142 kB) Collecting xlwt==1.3.* Downloading xlwt-1.3.0-py2.py3-none-any.whl (99 kB) Collecting xlrd==1.1.0 Downloading xlrd-1.1.0-py2.py3-none-any.whl (108 kB) Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from libsass==0.17.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 14)) (1.15.0) Requirement already satisfied: pbr>=0.11 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from mock==2.0.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 20)) (5.5.0) Requirement already satisfied: beautifulsoup4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from ofxparse==0.19->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 22)) (4.9.3) Collecting urllib3<1.25,>=1.21.1 Downloading urllib3-1.24.3-py2.py3-none-any.whl (118 kB) Collecting idna<2.9,>=2.5 Downloading idna-2.8-py2.py3-none-any.whl (58 kB) Requirement already satisfied: certifi>=2017.4.17 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (2020.6.20) Requirement already satisfied: cryptography>=1.3.4; extra == "security" in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (3.1.1) Requirement already satisfied: pyOpenSSL>=0.14; extra == "security" in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (19.1.0) Collecting cached-property>=1.3.0 Downloading cached_property-1.5.2-py2.py3-none-any.whl (7.6 kB) Collecting requests-toolbelt>=0.7.1 Downloading requests_toolbelt-0.9.1-py2.py3-none-any.whl (54 kB) Requirement already satisfied: appdirs>=1.4.0 in /usr/local/lib/python3.6/dist-packages (from zeep==3.2.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 40)) (1.4.4) Collecting isodate>=0.5.4 Downloading isodate-0.6.0-py2.py3-none-any.whl (45 kB) Collecting defusedxml>=0.4.1 Downloading defusedxml-0.6.0-py2.py3-none-any.whl (23 kB) Collecting attrs>=17.2.0 Downloading attrs-20.3.0-py2.py3-none-any.whl (49 kB) Collecting python-stdnum Downloading python_stdnum-1.14-py2.py3-none-any.whl (888 kB) Requirement already satisfied: soupsieve>1.2; python_version >= "3.0" in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from beautifulsoup4->ofxparse==0.19->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 22)) (2.0.1) Requirement already satisfied: cffi!=1.11.3,>=1.8 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from cryptography>=1.3.4; extra == "security"->requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (1.14.3) Requirement already satisfied: pycparser in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from cffi!=1.11.3,>=1.8->cryptography>=1.3.4; extra == "security"->requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (2.20) Building wheels for collected packages: ebaysdk, feedparser, gevent, greenlet, lxml, Mako, ofxparse, psutil, pyusb, vatnumber, vobject Building wheel for ebaysdk (setup.py): started Building wheel for ebaysdk (setup.py): finished with status 'done' Created wheel for ebaysdk: filename=ebaysdk-2.1.5-py3-none-any.whl size=62708 sha256=edf97295557700608c49f0cc1d27dde2808f385bc43e29ff2a0cb399e6b46ecd Stored in directory: /home/odoo/.cache/pip/wheels/55/67/e7/f7665026b58f440760d050063fd6694c85e9d1bc4ba22405ca Building wheel for feedparser (setup.py): started Building wheel for feedparser (setup.py): finished with status 'done' Created wheel for feedparser: filename=feedparser-5.2.1-py3-none-any.whl size=44940 sha256=0c7fb96c7ff98ecf4d58e2ed945c141e259faeea8ce2e73bebd084ed4d54bf8a Stored in directory: /home/odoo/.cache/pip/wheels/2f/70/50/16138238f6447854a1300f7d457766789dc7122cfaf46bcef2 Building wheel for gevent (setup.py): started Building wheel for gevent (setup.py): still running... Building wheel for gevent (setup.py): finished with status 'done' Created wheel for gevent: filename=gevent-1.1.2-cp36-cp36m-linux_x86_64.whl size=1307549 sha256=3dce202ce68b0762310f9980e620eb556d2f75bf2fcd61ab1765131cb3b6ee83 Stored in directory: /home/odoo/.cache/pip/wheels/b1/67/63/64f28b1555c1df7f0c4e47d5883b935f0671557ac9c65822e7 Building wheel for greenlet (setup.py): started Building wheel for greenlet (setup.py): finished with status 'done' Created wheel for greenlet: filename=greenlet-0.4.10-cp36-cp36m-linux_x86_64.whl size=41399 sha256=a46de6548579456127f2a1951f90305ee6cdc1e245f077ed25fe380435a6e143 Stored in directory: /home/odoo/.cache/pip/wheels/62/45/05/05aedb55955d4a84ebbe87e5432474a5df9fbccee9b8b15daf Building wheel for lxml (setup.py): started Building wheel for lxml (setup.py): still running... Building wheel for lxml (setup.py): finished with status 'done' Created wheel for lxml: filename=lxml-3.7.1-cp36-cp36m-linux_x86_64.whl size=3678012 sha256=ff11de87b3eba93eecf42b25be48229164f63a6dfa93471950aaff9cc94ff440 Stored in directory: /home/odoo/.cache/pip/wheels/a9/3e/9b/f94a04eb81f26c375d88d49cedde289388928c49f622ee349c Building wheel for Mako (setup.py): started Building wheel for Mako (setup.py): finished with status 'done' Created wheel for Mako: filename=Mako-1.0.7-py3-none-any.whl size=76582 sha256=019e57d1669fcae5c07468b2c06f19c67ea552e256c45000866b7c6b33b89c41 Stored in directory: /home/odoo/.cache/pip/wheels/9a/70/b0/3459851bb891c90f609378c6d02d9ac972a6ed5e92aa000e0b Building wheel for ofxparse (setup.py): started Building wheel for ofxparse (setup.py): finished with status 'done' Created wheel for ofxparse: filename=ofxparse-0.19-py3-none-any.whl size=35350 sha256=b1c7b1c26d28c3338408be8b16a701c430dad21a99440709c96cbdc306d4d048 Stored in directory: /home/odoo/.cache/pip/wheels/98/47/88/77bb97f80045742bd1308bf7f1d504cffcb7c05d264415b7f9 Building wheel for psutil (setup.py): started Building wheel for psutil (setup.py): finished with status 'done' Created wheel for psutil: filename=psutil-5.6.6-cp36-cp36m-linux_x86_64.whl size=258570 sha256=6da089c324a9baca7d9d7ef1e6468c626c47027a54b3283dd196ddcc8bdde4b7 Stored in directory: /home/odoo/.cache/pip/wheels/1c/02/08/5519c2e5ce9888173991b4b979d5a0407232bd92620ac40807 Building wheel for pyusb (setup.py): started Building wheel for pyusb (setup.py): finished with status 'done' Created wheel for pyusb: filename=pyusb-1.0.2-py3-none-any.whl size=57021 sha256=f8d3aa0cdb4ddb80a0c50f71ee3eb8ed04a8ef477b631e64a734700a4b582eee Stored in directory: /home/odoo/.cache/pip/wheels/13/b4/3d/1f8420a5a9cb4d02575d5b46f1e1017998c112be0a3c7c0ff0 Building wheel for vatnumber (setup.py): started Building wheel for vatnumber (setup.py): finished with status 'done' Created wheel for vatnumber: filename=vatnumber-1.2-py3-none-any.whl size=17521 sha256=6013ea91b38b4d5cdb342e9af53103f00c0ceffebc305eef3233ba08c129c216 Stored in directory: /home/odoo/.cache/pip/wheels/e0/e0/11/6ea94ea77d2c56e30683617aebd5b8f9707f1bf3a3a5764426 Building wheel for vobject (setup.py): started Building wheel for vobject (setup.py): finished with status 'done' Created wheel for vobject: filename=vobject-0.9.6.1-py3-none-any.whl size=47662 sha256=ad4408f71fa8f5d16c4abfe1bbf6e1479702c7601eb7676fb3a2cca00d4e4db3 Stored in directory: /home/odoo/.cache/pip/wheels/85/3c/61/f76d72ab7e65afe40edc14680f7880439d8201444b0165d837 Successfully built ebaysdk feedparser gevent greenlet lxml Mako ofxparse psutil pyusb vatnumber vobject Installing collected packages: pytz, Babel, decorator, docutils, lxml, urllib3, idna, requests, ebaysdk, feedparser, greenlet, gevent, html2text, MarkupSafe, Jinja2, libsass, Mako, mock, num2words, ofxparse, passlib, Pillow, psutil, psycopg2, pyparsing, pydot, python-dateutil, pyusb, qrcode, reportlab, cached-property, requests-toolbelt, isodate, defusedxml, attrs, zeep, python-stdnum, vatnumber, vobject, Werkzeug, XlsxWriter, xlwt, xlrd Attempting uninstall: docutils Found existing installation: docutils 0.16 Uninstalling docutils-0.16: Successfully uninstalled docutils-0.16 Attempting uninstall: lxml Found existing installation: lxml 4.6.1 Uninstalling lxml-4.6.1: Successfully uninstalled lxml-4.6.1 Attempting uninstall: urllib3 Found existing installation: urllib3 1.25.10 Uninstalling urllib3-1.25.10: Successfully uninstalled urllib3-1.25.10 Attempting uninstall: idna Found existing installation: idna 2.10 Uninstalling idna-2.10: Successfully uninstalled idna-2.10 Attempting uninstall: requests Found existing installation: requests 2.24.0 Uninstalling requests-2.24.0: Successfully uninstalled requests-2.24.0 Attempting uninstall: ofxparse Found existing installation: ofxparse 0.20 Uninstalling ofxparse-0.20: Successfully uninstalled ofxparse-0.20 ERROR: After October 2020 you may experience errors when installing or updating packages. This is because pip will change the way that it resolves dependency conflicts. We recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default. pylint-odoo 0.0.1.dev513 requires docutils==0.16, but you'll have docutils 0.14 which is incompatible. pylint-odoo 0.0.1.dev513 requires lxml>=4.2.3, but you'll have lxml 3.7.1 which is incompatible. Successfully installed Babel-2.6.0 Jinja2-2.10.1 Mako-1.0.7 MarkupSafe-1.1.0 Pillow-5.4.1 Werkzeug-0.14.1 XlsxWriter-1.1.2 attrs-20.3.0 cached-property-1.5.2 decorator-4.3.0 defusedxml-0.6.0 docutils-0.14 ebaysdk-2.1.5 feedparser-5.2.1 gevent-1.1.2 greenlet-0.4.10 html2text-2018.1.9 idna-2.8 isodate-0.6.0 libsass-0.17.0 lxml-3.7.1 mock-2.0.0 num2words-0.5.6 ofxparse-0.19 passlib-1.7.1 psutil-5.6.6 psycopg2-2.7.7 pydot-1.4.1 pyparsing-2.2.0 python-dateutil-2.7.3 python-stdnum-1.14 pytz-2019.1 pyusb-1.0.2 qrcode-6.1 reportlab-3.5.13 requests-2.21.0 requests-toolbelt-0.9.1 urllib3-1.24.3 vatnumber-1.2 vobject-0.9.6.1 xlrd-1.1.0 xlwt-1.3.0 zeep-3.2.0  if [ "x${WITHOUT_DEPENDENCIES}" == "x" ] ; then echo "Installing dependencies" pip install -q --no-binary pycparser -r ${HOME}/maintainer-quality-tools/requirements.txt pip install -q QUnitSuite coveralls codecov pip install pstats_print2list pip install certifi pip install -U urllib3[secure] setuptools==33.1.1 pip install ndg-httpsclient  # Install new dependence: npm package wget -qO- https://deb.nodesource.com/setup | sudo bash - apt-get install nodejs fi  echo "Adding git.vauxoo.com ECDSA key fingerprint" ssh-keyscan git.vauxoo.com >>~/.ssh/known_hosts Adding git.vauxoo.com ECDSA key fingerprint # git.vauxoo.com SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.10 # git.vauxoo.com SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.10 echo "Adding birbucket ECDSA key fingerprint" ssh-keyscan bitbucket.org >>~/.ssh/known_hosts Adding birbucket ECDSA key fingerprint # bitbucket.org SSH-2.0-conker_c123b90d72-dirty conker-3008 # bitbucket.org SSH-2.0-conker_c123b90d72-dirty conker-3008 no hostkey alg  echo "Getting addons dependencies" clone_oca_dependencies ${HOME} ${TRAVIS_BUILD_DIR}/.. Getting addons dependencies INFO:root:examining enterprise-pe INFO:root:* processing enterprise INFO:root:Calling git clone -q git@github.com:Vauxoo-dev/enterprise.git -b 13.0-pre-merge-ubl-umiphos /home/odoo/enterprise INFO:root:* processing server-tools INFO:root:Calling git clone -q git@github.com:Vauxoo/server-tools.git -b 13.0 /home/odoo/server-tools INFO:root:Calling pip install --no-binary pycparser -Ur /home/odoo/server-tools/requirements.txt Collecting raven Downloading raven-6.10.0-py2.py3-none-any.whl (284 kB) Installing collected packages: raven Successfully installed raven-6.10.0 clone_result=$? if [ "$clone_result" != "0" ]; then echo "Error cloning dependencies" exit $clone_result fi;  # if [[ "$VERSION" == "10.0" && -z "$NO_EXTRA_REPOS" ]]; then # Install profiler module # TODO: Fix error using runbot testing for vx/mexico#10.0 # git clone --single-branch --depth=1 https://github.com/Vauxoo/odoo-profiler.git -b ${VERSION} ${HOME}/odoo-profiler \ # && sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoo-profiler/profiler/__manifest__.py # Install web ribbon # git clone --single-branch --depth=1 https://github.com/OCA/web.git -b ${VERSION} ${HOME}/web-environment-ribbon-isolated \ # && sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/__manifest__.py \ # && sed -i 's/TEST/DEVELOPMENT/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/data/ribbon_data.xml \ # && find ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon -type f ! -name "__init__.py" -exec sed -i "s/web_environment_ribbon/web_environment_ribbon_isolated/g" {} \; \ # && (cd ${HOME}/web-environment-ribbon-isolated; rm -rf $(ls | grep -v web_environment_ribbon$); mv web_environment_ribbon web_environment_ribbon_isolated ) # Install odoolint module  # Install module that disable html in the logs # echo "Install odoo lint SQA isolated" # git clone --single-branch --depth=1 https://github.com/vauxoo/server-tools.git -b ${VERSION} ${HOME}/odoolintsqa # (cd ${HOME}/odoolintsqa; mv odoolint odoolint_isolated; mv tour_hide_dom_log tour_hide_dom_log_isolated; rm -rf $(ls | grep -v '_isolated')) # sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/odoolintsqa/*/__manifest__.py # sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoolintsqa/*/__manifest__.py # sed -i 's/tour_hide_dom_log/tour_hide_dom_log_isolated/g' ${HOME}/odoolintsqa/tour_hide_dom_log_isolated/views/assets.xml # fi; if [[ "$VERSION" == "8.0" && -z "$NO_EXTRA_REPOS" ]]; then  # Install web ribbon  git clone --single-branch --depth=1 https://github.com/OCA/web.git -b ${VERSION} ${HOME}/web-environment-ribbon-isolated \ && sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/__openerp__.py \  && sed -i 's/TEST/DEVELOPMENT/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/data/ribbon_data.xml \  && find ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon -type f ! -name "__init__.py" -exec sed -i "s/web_environment_ribbon/web_environment_ribbon_isolated/g" {} \; \  && (cd ${HOME}/web-environment-ribbon-isolated; rm -rf $(ls | grep -v web_environment_ribbon$); mv web_environment_ribbon web_environment_ribbon_isolated )  # Install profiler module git clone --single-branch --depth=1 https://github.com/Vauxoo/odoo-profiler.git -b ${VERSION} ${HOME}/odoo-profiler \  && sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoo-profiler/profiler/__openerp__.py \ # Install odoolint module # Install module that disable html in the logs  echo "Install odoo lint SQA isolated"  git clone --single-branch --depth=1 https://github.com/vauxoo/server-tools.git -b ${VERSION} ${HOME}/odoolintsqa  (cd ${HOME}/odoolintsqa; mv odoolint odoolint_isolated; mv tour_hide_dom_log tour_hide_dom_log_isolated; rm -rf $(ls | grep -v '_isolated')) sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/odoolintsqa/*/__openerp__.py  sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoolintsqa/*/__openerp__.py sed -i 's/tour_hide_dom_log/tour_hide_dom_log_isolated/g' ${HOME}/odoolintsqa/tour_hide_dom_log_isolated/views/assets.xml fi;  # Use reference .coveragerc cp ${HOME}/maintainer-quality-tools/cfg/.coveragerc ${TRAVIS_BUILD_DIR}  # Expected directory structure: # # HOME/ # |___ -/ <-- Odoo Server # |___ maintainer-quality-tools/ # |___ build/// # |___ / # |___ / # |... echo "Content of ${HOME}:" ls -l ${HOME} Content of /home/odoo: total 28 drwxr-xr-x 1 odoo odoo 4096 Nov 16 19:41 build drwxr-xr-x 236 odoo odoo 12288 Nov 16 19:46 enterprise drwxr-xr-x 8 odoo odoo 4096 Nov 16 19:41 maintainer-quality-tools lrwxrwxrwx 1 odoo odoo 24 Nov 16 19:42 odoo-13.0-pre-merge-ubl -> /.repo_requirements/odoo drwxr-xr-x 24 odoo odoo 4096 Nov 16 19:46 server-tools lrwxrwxrwx 1 root root 25 Oct 14 23:27 tools -> /.repo_requirements/tools  if [ "x${WKHTMLTOPDF_VERSION}" == "x" ] ; then WKHTMLTOPDF_VERSION="0.12.5" fi echo "Installing webkit (wkhtmltopdf) patched version ${WKHTMLTOPDF_VERSION}" Installing webkit (wkhtmltopdf) patched version 0.12.5 case ${WKHTMLTOPDF_VERSION} in 0.12.[15]) # these versions need to be installed via .deb  if [[ ${WKHTMLTOPDF_VERSION} == "0.12.5" ]]; then wk_installer="wkhtmltox_${WKHTMLTOPDF_VERSION}-1.$(lsb_release -sc)_amd64.deb" else wk_installer="wkhtmltox-${WKHTMLTOPDF_VERSION}_linux-$(lsb_release -sc)-amd64.deb" fi wget -q --timeout=240 https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/${WKHTMLTOPDF_VERSION}/${wk_installer} -O wkhtmltox.deb  dpkg --extract wkhtmltox.deb wkhtmltox.deb_files cp wkhtmltox.deb_files/usr/local/bin/wkhtmltopdf ${HOME}/maintainer-quality-tools/travis/wkhtmltopdf rm -r wkhtmltox.deb*;; "") ;; # Do nothing if no version was provided *) (cd ${HOME}/maintainer-quality-tools/travis/ && wget -qO- -t 1 --timeout=240 https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/${WKHTMLTOPDF_VERSION}/wkhtmltox-${WKHTMLTOPDF_VERSION}_linux-generic-amd64.tar.xz | tar -xJ --strip-components=2 wkhtmltox/bin/wkhtmltopdf);; esac lsb_release -sc  wkhtmltopdf -V wkhtmltopdf 0.12.5 (with patched qt)  if [ "$PG_LOGS_ENABLE" == "1" ]; then python $(dirname ${BASH_SOURCE[0]})/psql_log.py fi  # Applying patches python $(dirname ${BASH_SOURCE[0]})/travis_apply_patches.py ${TRAVIS_BUILD_DIR}/patches.txt ${ODOO_PATH} ${HOME} dirname ${BASH_SOURCE[0]}  exit 0 Removing intermediate container 523c0582c01e ---> 17fa7600f2af Step 24/24 : ENTRYPOINT /entrypoint.sh ---> Running in bb75a6f8bc92 Removing intermediate container bb75a6f8bc92 ---> 902e27fd8bbe Successfully built 902e27fd8bbe Successfully tagged vauxoo-enterprise-pe:e319da0_env_2_job_1