From 8809e7f3925f748826c7fadd2fefd6405712f030 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Fri, 11 Jan 2019 16:08:49 +0100 Subject: [PATCH] [gitlab-ci] Remove browser-tests --- .gitlab-ci.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eb83d3cb..e4c0e147 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,6 @@ variables: # Definition of our build pipeline order stages: - build - - browser-tests - deploy - pypi @@ -83,40 +82,6 @@ build_macosx_36: PYTHON_VERSION: "3.6" -# Docker host based testing (must be run inside dind or docker-enabled host) -.browser_test_linux_template: &linux_browser_test_job - stage: browser-tests - image: docker.idiap.ch/beat/ci.env.editor:0.0.1r0 - before_script: - # safe keep artifacts as before_build.sh will erase those... - - apt-get update > /dev/null - - apt-get install -y locales > /dev/null - - echo "en_US UTF-8" > /etc/locale.gen - - locale-gen en_US.UTF-8 - - export LANG=en_US.UTF-8 - - export LANGUAGE=en_US:en - - export LC_ALL=en_US.UTF-8 - - mv ${CONDA_ROOT}/conda-bld . - - ./_ci/install.sh _ci master #updates ci support scripts - - ./_ci/before_build.sh - - mv conda-bld ${CONDA_ROOT} - script: - - export BEAT_BROWSER_TESTS=true - - BEAT_BROWSER_TESTS=true BOB_TEST_ONLY=true ./_ci/build.sh - after_script: - - ./_ci/after_build.sh - - -browser_linux_36: - <<: *linux_browser_test_job - variables: - PYTHON_VERSION: "3.6" - dependencies: - - build_linux_36 - tags: - - docker - - # Deploy targets .deploy_template: &deploy_job stage: deploy -- GitLab