From d86e4cd2c87ce5d733e89ae7635b205e5513e155 Mon Sep 17 00:00:00 2001 From: Borja Lorente Date: Tue, 16 Apr 2019 17:02:31 +0200 Subject: [PATCH] Bootstrap py36 in cron as well (#7579) **Problem** The cron job was not configured to bootstrap the 3.6 version of pants, and therefore when we added the "3.6 + pantsd" shards in #7440, these don't work. **Solution** To add the 3.6 bootstrapping shards to the cron job. **Result** The cron job should now work, maybe? --- .travis.yml | 4 ++++ build-support/travis/travis.yml.mustache | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4cdc4362ab7..cda32c7d2cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -895,12 +895,16 @@ matrix: - <<: *py27_linux_build_engine stage: *bootstrap_cron - <<: *py36_linux_build_engine + - <<: *py36_linux_build_engine + stage: *bootstrap_cron - <<: *py37_linux_build_engine - <<: *py27_osx_build_engine - <<: *py27_osx_build_engine stage: *bootstrap_cron - <<: *py36_osx_build_engine + - <<: *py36_osx_build_engine + stage: *bootstrap_cron - <<: *py37_osx_build_engine - <<: *py27_lint diff --git a/build-support/travis/travis.yml.mustache b/build-support/travis/travis.yml.mustache index c1ad36753a5..77db59ef565 100644 --- a/build-support/travis/travis.yml.mustache +++ b/build-support/travis/travis.yml.mustache @@ -838,12 +838,16 @@ matrix: - <<: *py27_linux_build_engine stage: *bootstrap_cron - <<: *py36_linux_build_engine + - <<: *py36_linux_build_engine + stage: *bootstrap_cron - <<: *py37_linux_build_engine - <<: *py27_osx_build_engine - <<: *py27_osx_build_engine stage: *bootstrap_cron - <<: *py36_osx_build_engine + - <<: *py36_osx_build_engine + stage: *bootstrap_cron - <<: *py37_osx_build_engine - <<: *py27_lint