mirror of
https://github.com/google-deepmind/deepmind-research.git
synced 2026-05-09 21:07:49 +08:00
99f131e493
* This doesn't work yet due to problems with installing Python 3.5 from source PiperOrigin-RevId: 368237194
35 lines
883 B
YAML
35 lines
883 B
YAML
sudo: required
|
|
dist: trusty
|
|
language: python
|
|
git:
|
|
depth: 10
|
|
quiet: true
|
|
python:
|
|
- "3.6"
|
|
env:
|
|
matrix:
|
|
- PROJECT="adversarial_robustness"
|
|
- PROJECT="avae"
|
|
# - PROJECT="cs_gan" # TODO(b/184845450): Fix and re-enable
|
|
- PROJECT="gated_linear_networks"
|
|
- PROJECT="geomancer"
|
|
- PROJECT="hierarchical_probabilistic_unet"
|
|
- PROJECT="iodine"
|
|
- PROJECT="kfac_ferminet_alpha"
|
|
- PROJECT="learning_to_simulate"
|
|
- PROJECT="nfnets"
|
|
- PROJECT="noise_covariance"
|
|
- PROJECT="option_keyboard"
|
|
# - PROJECT="polygen" # TODO(b/184847339): Fix and re-enable
|
|
# - PROJECT="scratchgan" # TODO(b/184856293): Fix and enable
|
|
- 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
|
|
|