Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#
trigger:
paths:
exclude:
- docs
jobs:
- job: Fastseq_Tests
timeoutInMinutes: 360
pool:
name: default
demands:
- agent.name -equals gpu4

steps:
- script: |
sudo docker run --gpus all --network=host --privileged -w '/root' --shm-size=1g --ulimit memlock=-1 --ulimit stack=67108864 adsbrainwestus2.azurecr.io/fastseq:dev-py3 /bin/bash
pip install --editable .
bash tests/run_fairseq_tests.sh
displayName: 'Setup environment and run fairseq tests'