mirror of
https://github.com/google-deepmind/deepmind-research.git
synced 2026-05-09 12:37:43 +08:00
0b2370819b
* Restrict the script to a single episode to avoid timeouts * Ensure that `wheel` is up to date (we may need to build our own wheels for some of the requirements) PiperOrigin-RevId: 367980522
27 lines
494 B
YAML
27 lines
494 B
YAML
sudo: required
|
|
dist: trusty
|
|
language: python
|
|
git:
|
|
depth: 10
|
|
quiet: true
|
|
python:
|
|
- "3.6"
|
|
env:
|
|
matrix:
|
|
- PROJECT="avae"
|
|
- PROJECT="cs_gan"
|
|
- PROJECT="iodine"
|
|
- PROJECT="kfac_ferminet_alpha"
|
|
- PROJECT="learning_to_simulate"
|
|
- PROJECT="polygen"
|
|
- PROJECT="transporter"
|
|
- PROJECT="tvt"
|
|
before_script:
|
|
- sudo apt-get update -qq
|
|
- pip install --upgrade pip
|
|
- pip install --upgrade virtualenv
|
|
- pip install --upgrade wheel
|
|
script:
|
|
- ./$PROJECT/run.sh
|
|
|