Skip to content

Commit

Permalink
Disable remote execution due to RBE shutdown. (pantsbuild#10566)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuhood authored Aug 7, 2020
1 parent 7499b02 commit 3cb115d
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ jobs:
- travis-wait-enhanced --timeout 50m --interval 9m -- ./build-support/bin/ci.py
--githooks --smoke-tests --python-version 3.6
- travis-wait-enhanced --timeout 40m --interval 9m -- ./build-support/bin/ci.py
--remote-execution-enabled --lint --python-version 3.6
--lint --python-version 3.6
stage: Test Pants
sudo: required
- addons:
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
- travis-wait-enhanced --timeout 50m --interval 9m -- ./build-support/bin/ci.py
--githooks --smoke-tests --python-version 3.7
- travis-wait-enhanced --timeout 40m --interval 9m -- ./build-support/bin/ci.py
--remote-execution-enabled --lint --python-version 3.7
--lint --python-version 3.7
stage: Test Pants (Cron)
sudo: required
- before_cache:
Expand Down Expand Up @@ -435,8 +435,7 @@ jobs:
- '3.7'
script:
- travis-wait-enhanced --timeout 65m --interval 9m -- ./build-support/bin/ci.py
--unit-tests --integration-tests --remote-execution-enabled --python-version
3.6
--unit-tests --integration-tests --python-version 3.6
stage: Test Pants
sudo: required
- addons:
Expand Down Expand Up @@ -497,8 +496,7 @@ jobs:
- '3.7'
script:
- travis-wait-enhanced --timeout 65m --interval 9m -- ./build-support/bin/ci.py
--unit-tests --integration-tests --remote-execution-enabled --python-version
3.7
--unit-tests --integration-tests --python-version 3.7
stage: Test Pants (Cron)
sudo: required
- before_cache:
Expand Down
4 changes: 2 additions & 2 deletions build-support/bin/generate_travis_yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def lint(python_version: PythonVersion) -> Dict:
# local execution has finished.
(
"travis-wait-enhanced --timeout 40m --interval 9m -- ./build-support/bin/ci.py "
f"--remote-execution-enabled --lint --python-version {python_version.decimal}"
f"--lint --python-version {python_version.decimal}"
),
],
}
Expand Down Expand Up @@ -558,7 +558,7 @@ def python_tests(python_version: PythonVersion) -> Dict:
"name": f"Python tests (Python {python_version.decimal})",
"script": [
"travis-wait-enhanced --timeout 65m --interval 9m -- ./build-support/bin/ci.py "
"--unit-tests --integration-tests --remote-execution-enabled --python-version "
"--unit-tests --integration-tests --python-version "
f"{python_version.decimal}"
],
"after_success": ["./build-support/bin/upload_coverage.sh"],
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/python/lint/docformatter/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ python_library()
python_integration_tests(
name='integration',
uses_pants_run=False,
timeout=120,
)
2 changes: 1 addition & 1 deletion src/python/pants/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ python_integration_tests(
tags=['platform_specific_behavior'],
# NB: This frequently times out, but due to hanging. So, we want to fail eagerly. See
# https://github.com/pantsbuild/pants/issues/8127.
timeout=200,
timeout=400,
)

python_integration_tests(
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/build_graph/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ python_tests(
python_integration_tests(
name='integration',
uses_pants_run=True,
timeout=180,
)
2 changes: 1 addition & 1 deletion src/python/pants/engine/internals/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ python_integration_tests(
dependencies=[
'examples/src/python/example:hello_directory',
],
timeout=90,
timeout=180,
)

python_library(
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/help/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ python_tests(
python_integration_tests(
name='integration',
uses_pants_run=True,
timeout=120,
timeout=180,
)
2 changes: 1 addition & 1 deletion tests/python/pants_test/integration/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python_integration_tests(
'src/python/pants/testutil:int-test',
],
uses_pants_run=True,
timeout = 120,
timeout = 240,
)

python_integration_tests(
Expand Down
2 changes: 1 addition & 1 deletion tests/python/pants_test/pantsd/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ python_integration_tests(
'testprojects/src/python:print_env_directory',
],
uses_pants_run=True,
timeout = 1020
timeout = 1800
)

0 comments on commit 3cb115d

Please sign in to comment.