1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

ci: using serial jobs in nightly (#350)

This commit is contained in:
anabwan
2019-06-17 10:53:36 +03:00
committed by GitHub
parent 7eb884c5b2
commit 1c90bc22a1

View File

@@ -183,9 +183,9 @@ jobs:
- run: - run:
name: run functional tests name: run functional tests
command: | 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 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: - run:
name: cleanup name: cleanup
command: | command: |
@@ -676,7 +676,7 @@ workflows:
weekly: weekly:
triggers: triggers:
- schedule: - schedule:
cron: "0 4 * * 6" cron: "0 1 * * 6"
filters: filters:
branches: branches:
only: only:
@@ -712,7 +712,7 @@ workflows:
nightly: nightly:
triggers: triggers:
- schedule: - schedule:
cron: "0 1 * * *" cron: "0 1 * * 0-5"
filters: filters:
branches: branches:
only: only:
@@ -731,9 +731,11 @@ workflows:
- functional_tests: - functional_tests:
requires: requires:
- build_base - build_base
- integration_tests
- functional_test_doom: - functional_test_doom:
requires: requires:
- build_doom_env - build_doom_env
- functional_tests
- functional_test_mujoco: - functional_test_mujoco:
requires: requires:
- build_mujoco_env - build_mujoco_env
@@ -741,6 +743,7 @@ workflows:
- golden_test_gym: - golden_test_gym:
requires: requires:
- build_gym_env - build_gym_env
- functional_test_mujoco
- golden_test_doom: - golden_test_doom:
requires: requires:
- build_doom_env - build_doom_env