forked from pytorch/rl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Linux Olddeps tests to Nova (pytorch#1289)
Co-authored-by: vmoens <vincentmoens@gmail.com>
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Olddeps Tests on Linux | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- nightly | ||
- main | ||
- release/* | ||
workflow_dispatch: | ||
|
||
jobs: | ||
unittests: | ||
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | ||
with: | ||
repository: pytorch/rl | ||
runner: "linux.g5.4xlarge.nvidia.gpu" | ||
# gpu-arch-type: cuda | ||
# gpu-arch-version: "11.7" | ||
docker-image: "nvidia/cudagl:11.4.0-base" | ||
timeout: 120 | ||
script: | | ||
set -euo pipefail | ||
export PYTHON_VERSION="3.9" | ||
export CU_VERSION="cu116" | ||
export TAR_OPTIONS="--no-same-owner" | ||
export UPLOAD_CHANNEL="nightly" | ||
export TF_CPP_MIN_LOG_LEVEL=0 | ||
bash .circleci/unittest/linux_olddeps/scripts_gym_0_13/setup_env.sh | ||
bash .circleci/unittest/linux_olddeps/scripts_gym_0_13/batch_scripts.sh | ||
bash .circleci/unittest/linux_olddeps/scripts_gym_0_13/post_process.sh |