File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 6
6
if [[ ${MATRIX_PYTHON_VERSION} == ' 3.11' ]]; then
7
7
conda create -y -n ${ENV_NAME} python=${MATRIX_PYTHON_VERSION}
8
8
conda activate ${ENV_NAME}
9
- eval $MATRIX_INSTALLATION
10
- python ./test/smoke_test/smoke_test.py --package torchonly
9
+
10
+ INSTALLATION=${MATRIX_INSTALLATION/ " -c pytorch" / " -c malfet -c pytorch" }
11
+ INSTALLATION=${INSTALLATION/ " pytorch-cuda" / " pytorch-${MATRIX_CHANNEL} ::pytorch-cuda" }
12
+ INSTALLATION=${INSTALLATION/ " conda install" / " conda install -y" }
13
+
14
+ eval $INSTALLATION
15
+ python ./test/smoke_test/smoke_test.py
11
16
conda deactivate
12
17
conda env remove -n ${ENV_NAME}
13
18
else
Original file line number Diff line number Diff line change 17
17
- .github/workflows/validate-macos-binaries.yml
18
18
- .github/workflows/validate-macos-arm64-binaries.yml
19
19
- test/smoke_test/*
20
- pull_request :
21
- paths :
22
- - .github/workflows/validate-release-binaries.yml
23
- - .github/workflows/validate-linux-binaries.yml
24
- - .github/workflows/validate-windows-binaries.yml
25
- - .github/workflows/validate-macos-binaries.yml
26
- - .github/workflows/validate-macos-arm64-binaries.yml
27
- - test/smoke_test/*
28
20
29
21
jobs :
30
22
release :
You can’t perform that action at this time.
0 commit comments