-
Notifications
You must be signed in to change notification settings - Fork 317
51 lines (39 loc) · 1.35 KB
/
test-windows-optdepts-gpu.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Unit-tests on Windows GPU
on:
pull_request:
push:
branches:
- nightly
- main
- release/*
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && format('ci-master-{0}', github.sha) || format('ci-{0}', github.ref) }}
cancel-in-progress: true
jobs:
unittests:
uses: pytorch/test-infra/.github/workflows/windows_job.yml@main
with:
runner: "windows.g5.4xlarge.nvidia.gpu"
repository: pytorch/rl
timeout: 240
script: |
set -euxo pipefail
export PYTHON_VERSION="3.9"
export CUDA_VERSION="11.6"
export CU_VERSION="cu116"
# TODO: Port this to pytorch/test-infra/.github/workflows/windows_job.yml
export PATH="/c/Jenkins/Miniconda3/Scripts:${PATH}"
echo "PYTHON_VERSION: $PYTHON_VERSION"
## setup_env.sh
./.github/unittest/windows_optdepts/scripts/setup_env.sh
## Install CUDA
packaging/windows/internal/cuda_install.bat
## Update CUDA Driver
packaging/windows/internal/driver_update.bat
## install.sh
./.github/unittest/windows_optdepts/scripts/install.sh
## run_test.sh
./.github/unittest/windows_optdepts/scripts/run_test.sh
## post_process.sh
./.github/unittest/windows_optdepts/scripts/post_process.sh