This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch juerg/ci in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 7537da8b810a605b921746dacbfe042cedf80c05 Author: Jürg Billeter <[email protected]> AuthorDate: Tue May 18 11:47:21 2021 +0200 .github: Rename remote service tests in CI There is one CI job for each remote service, which should run all applicable tests against that particular service. Consistently use the name of the remote service as CI job name to clarify this and prepare for additional tests. --- .../{ci.buildstream-remote-cache.yml => ci.bst-artifact-server.yml} | 4 ++-- .github/compose/{ci.buildbarn-remote-cache.yml => ci.buildbarn.yml} | 4 ++-- .github/compose/{ci.remote-execution.yml => ci.buildgrid.yml} | 4 ++-- .github/compose/ci.docker-compose.yml | 6 +++--- .github/workflows/ci.yml | 6 +++--- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/compose/ci.buildstream-remote-cache.yml b/.github/compose/ci.bst-artifact-server.yml similarity index 82% rename from .github/compose/ci.buildstream-remote-cache.yml rename to .github/compose/ci.bst-artifact-server.yml index 9f853fa..866f73b 100644 --- a/.github/compose/ci.buildstream-remote-cache.yml +++ b/.github/compose/ci.bst-artifact-server.yml @@ -11,8 +11,8 @@ # push: true # # Basic usage: -# - docker-compose -f ci.buildstream-remote-cache.yml up -# - docker-compose -f ci.buildstream-remote-cache.yml down +# - docker-compose -f ci.bst-artifact-server.yml up +# - docker-compose -f ci.bst-artifact-server.yml down # version: "3.2" diff --git a/.github/compose/ci.buildbarn-remote-cache.yml b/.github/compose/ci.buildbarn.yml similarity index 90% rename from .github/compose/ci.buildbarn-remote-cache.yml rename to .github/compose/ci.buildbarn.yml index 349a289..c1e90e9 100644 --- a/.github/compose/ci.buildbarn-remote-cache.yml +++ b/.github/compose/ci.buildbarn.yml @@ -16,8 +16,8 @@ # push: true # # Basic usage: -# - docker-compose -f ci.buildbarn-remote-cache.yml up -# - docker-compose -f ci.buildbarn-remote-cache.yml down +# - docker-compose -f ci.buildbarn.yml up +# - docker-compose -f ci.buildbarn.yml down version: '3.4' diff --git a/.github/compose/ci.remote-execution.yml b/.github/compose/ci.buildgrid.yml similarity index 94% rename from .github/compose/ci.remote-execution.yml rename to .github/compose/ci.buildgrid.yml index e58a2a3..211c320 100644 --- a/.github/compose/ci.remote-execution.yml +++ b/.github/compose/ci.buildgrid.yml @@ -19,8 +19,8 @@ # url: http://localhost:50051 # # Basic usage: -# - docker-compose -f ci.remote-execution.yml up -# - docker-compose -f ci.remote-execution.yml down +# - docker-compose -f ci.buildgrid.yml up +# - docker-compose -f ci.buildgrid.yml down # version: "3.2" diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 2ef1a24..ee8d8c8 100644 --- a/.github/compose/ci.docker-compose.yml +++ b/.github/compose/ci.docker-compose.yml @@ -58,7 +58,7 @@ services: environment: BST_PLUGINS_EXPERIMENTAL_VERSION: master - remote-execution: + buildgrid: <<: *tests-template command: tox -vvvvv -- --color=yes --remote-execution environment: @@ -72,7 +72,7 @@ services: # network_mode: host - buildstream-remote-cache: + bst-artifact-server: <<: *tests-template command: tox -vvvvv -- --color=yes --remote-cache environment: @@ -84,7 +84,7 @@ services: # network_mode: host - buildbarn-remote-cache: + buildbarn: <<: *tests-template command: tox -vvvvv -- --color=yes --remote-cache environment: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9401b4..894caaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,9 +87,9 @@ jobs: # and they also map to corresponding filenames of services which are expected # to be run in the background test-name: - - remote-execution - - buildstream-remote-cache - - buildbarn-remote-cache + - bst-artifact-server + - buildbarn + - buildgrid steps: - name: Check out repository
