From 1c90bc22a1b30ec5a5e1a2e0ce8ec09393222bb6 Mon Sep 17 00:00:00 2001 From: anabwan <46447582+anabwan@users.noreply.github.com> Date: Mon, 17 Jun 2019 10:53:36 +0300 Subject: [PATCH] ci: using serial jobs in nightly (#350) --- .circleci/config.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 650ee09..a2f2c6f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -183,9 +183,9 @@ jobs: - run: name: run functional tests command: | - export FUNCTIONAL_PRESETS="'not Mujoco and not CARLA and not Doom'" + export FUNCTIONAL_PRESETS="'not Mujoco and not CARLA and not Doom and not Starcraft'" python3 rl_coach/tests/test_eks.py -c coach-test -bn ${CIRCLE_BUILD_NUM} -tn functional-test -tc "export FUNCTIONAL_PRESETS=${FUNCTIONAL_PRESETS} && make functional_tests_without_docker" -i 316971102342.dkr.ecr.us-west-2.amazonaws.com/coach:$(git describe --tags --always --dirty) -cpu 2048 -mem 4096 - no_output_timeout: 30m + no_output_timeout: 45m - run: name: cleanup command: | @@ -676,7 +676,7 @@ workflows: weekly: triggers: - schedule: - cron: "0 4 * * 6" + cron: "0 1 * * 6" filters: branches: only: @@ -712,7 +712,7 @@ workflows: nightly: triggers: - schedule: - cron: "0 1 * * *" + cron: "0 1 * * 0-5" filters: branches: only: @@ -731,9 +731,11 @@ workflows: - functional_tests: requires: - build_base + - integration_tests - functional_test_doom: requires: - build_doom_env + - functional_tests - functional_test_mujoco: requires: - build_mujoco_env @@ -741,6 +743,7 @@ workflows: - golden_test_gym: requires: - build_gym_env + - functional_test_mujoco - golden_test_doom: requires: - build_doom_env