We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f402aee commit 4003322Copy full SHA for 4003322
.github/workflows/test-linux-cpu.yml
@@ -1,4 +1,5 @@
1
name: Unit-tests on Linux CPU
2
+
3
on:
4
pull_request:
5
push:
@@ -7,8 +8,10 @@ on:
7
8
- main
9
- release/*
10
workflow_dispatch:
11
12
env:
13
CHANNEL: "nightly"
14
15
jobs:
16
tests:
17
name: "Unit-tests on Linux CPU"
@@ -17,7 +20,7 @@ jobs:
20
image: pytorch/conda-builder:cpu
18
21
strategy:
19
22
matrix:
- py_vers: ["3.8"]
23
+ py_vers: ["3.7", "3.8", "3.9", "3.10"]
24
25
steps:
26
- name: Checkout repository
@@ -42,7 +45,8 @@ jobs:
42
45
VERSION: cpu
43
46
CUDATOOLKIT: cpuonly
44
47
run: |
- # Needed for JPEG library detection as setup.py detects conda presence by running `shutil.which('conda')`
48
+ # Needed for JPEG library detection as setup.py detects conda presence
49
+ # by running `shutil.which('conda')`
50
export PATH=~/miniconda3/bin:$PATH
51
set -ex
52
${CONDA_RUN} conda install \
0 commit comments