mirror of
https://github.com/google-deepmind/deepmind-research.git
synced 2026-05-09 21:07:49 +08:00
eb6b2fccc8
This is currently failing due to missing GPG pubkeys, and we don't think it's actually necessary. PiperOrigin-RevId: 368673061
37 lines
1002 B
YAML
37 lines
1002 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="sketchy"
|
|
- PROJECT="transporter"
|
|
- PROJECT="tvt"
|
|
# - PROJECT="unrestricted_advx" # TODO(b/184862249): Fix and enable
|
|
- PROJECT="unsupervised_adversarial_training"
|
|
before_script:
|
|
- pip install --upgrade pip
|
|
- pip install --upgrade virtualenv
|
|
- pip install --upgrade wheel
|
|
script:
|
|
- ./$PROJECT/run.sh
|
|
|