You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2021/01/20 07:12:56 UTC

[buildstream] 01/03: .github/common.env: Defining TOXENV candidates here

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch tristan/remote-execution-testing
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit ed48d1b13b188d7656a2bdeca2a496ebbb4e4846
Author: Tristan van Berkom <tr...@codethink.co.uk>
AuthorDate: Wed Jan 20 16:04:05 2021 +0900

    .github/common.env: Defining TOXENV candidates here
    
    List the possible tox environments in one place so we can
    reuse these in the compose files conveniently.
---
 .github/common.env | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/common.env b/.github/common.env
index ef0c9a0..cd28768 100644
--- a/.github/common.env
+++ b/.github/common.env
@@ -1,3 +1,6 @@
 # Shared common variables
 
 CI_IMAGE_VERSION=master-241289109
+CI_TOXENV_MAIN=py36,py37,py38-nocover
+CI_TOXENV_PLUGINS=py36-plugins,py37-plugins,py38-plugins-nocover
+CI_TOXENV_ALL="${CI_TOXENV_MAIN},${CI_TOXENV_PLUGINS}"