From af8e124193e0d0df8ef7ca14ed1c623a3b5bd7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Poizat?= Date: Wed, 24 Jul 2024 11:15:46 +0200 Subject: [PATCH] chore: Remove stages in CI Stages : - allow to restart only parts of the CI we it fails - but takes more time globally because we need to install node_modules multiple times We think that it is not worth it anymore. --- .travis.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index e0a81cf04..d6b846bd4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,19 +17,13 @@ branches: - master # detect also tag like x.y.z or x.y.z-beta.n as travis consider them to be branches - /^\d+\.\d+\.\d+(\-beta.\d+)?$/ -stages: - - prebuild - - build jobs: include: - name: 'Lint' - stage: 'prebuild' script: yarn lint - name: 'Unit tests' - stage: 'prebuild' script: yarn test - name: Build - stage: build before_install: - if [ "$TRAVIS_SECURE_ENV_VARS" != "false" ]; then openssl aes-256-cbc -K $encrypted_e51c23250372_key -iv $encrypted_e51c23250372_iv -in id_rsa_downcloud_contacts.enc -out /tmp/id_rsa_downcloud_contacts -d; fi - if [ "$TRAVIS_SECURE_ENV_VARS" != "false" ]; then eval "$(ssh-agent -s)"; fi