我需要针对mac和linux测试针对python 2和3的python脚本,我已经得到以下配置:
os:
- linux
- osx
language: cpp
osx_image: xcode8.2
compiler:
- clang
script:
- clang --version
- bash run-tests.sh
如何将每个python版本添加到矩阵中以创建4个作业?
答案 0 :(得分:-1)
假设您可以设置run-tests.sh来从某个环境变量PY
获取并使用python版本:
os:
- linux
- osx
language: cpp
osx_image: xcode8.2
compiler:
- clang
matrix:
include:
- env: PY=/path/to/your/first/python
- env: PY=/path/to/your/second/python
script:
- clang --version
- bash run-tests.sh