浏览代码

3rd circleci run

/develop-gpu-test
Chris Elion 5 年前
当前提交
e277824a
共有 4 个文件被更改,包括 15 次插入2 次删除
  1. 10
      .circleci/config.yml
  2. 1
      test_constraints_max_tf2_version.txt
  3. 6
      test_constraints_max_tf1_version.txt
  4. 0
      /test_constraints_max_tf2_version.txt

10
.circleci/config.yml


command: |
. venv/bin/activate
pre-commit run --hook-stage manual markdown-link-check --all-files
protobuf_generation_check:
docker:
- image: circleci/python:3.7.3

executor: python373
pyversion: 3.7.3
# Test python 3.7 with the newest supported versions
pip_constraints: test_constraints_max_version.txt
pip_constraints: test_constraints_max_tf1_version.txt
- build_python:
name: python_3.7.3+tf2
executor: python373
pyversion: 3.7.3
# Test python 3.7 with the newest supported versions
pip_constraints: test_constraints_max_tf2_version.txt
- markdown_link_check
- protobuf_generation_check

1
test_constraints_max_tf2_version.txt


# pip constraints to use the *highest* versions allowed in ml-agents/setup.py
# tensorflow >= 2.0
# For projects with upper bounds, we should periodically update this list to the latest release version
grpcio>=1.23.0
numpy>=1.17.2

6
test_constraints_max_tf1_version.txt


# pip constraints to use the *highest* versions allowed in ml-agents/setup.py
# with the exception of tensorflow, which is constrained to <2
# For projects with upper bounds, we should periodically update this list to the latest release version
grpcio>=1.23.0
numpy>=1.17.2
tensorflow>=1.14.0,<2.0

/test_constraints_max_version.txt → /test_constraints_max_tf2_version.txt

正在加载...
取消
保存