Skip to content

Commit 4b8b194

Browse files
author
Caroline Chen
committed
remove extra changes
1 parent 3e6eb97 commit 4b8b194

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/config.yml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,8 @@ jobs:
391391
conda env remove -n python${PYTHON_VERSION} || true
392392
conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
393393
conda activate python${PYTHON_VERSION}
394-
conda install -v -y -c pytorch-${UPLOAD_CHANNEL} pytorch
395-
conda install -v -y -c file:///C:/Users/circleci/workspace/conda-bld torchaudio
394+
conda install -v -y -c pytorch-${UPLOAD_CHANNEL} pytorch cpuonly
395+
conda install -v -y $(ls ~/workspace/torchaudio*.tar.bz2)
396396
- run:
397397
name: smoke test
398398
command: |

.circleci/smoke_test/docker/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ ENV PATH /opt/conda/bin:$PATH
2828
RUN conda create -y --name python3.6 python=3.6
2929
RUN conda create -y --name python3.7 python=3.7
3030
RUN conda create -y --name python3.8 python=3.8
31-
RUN conda create -y --name python3.9 python=3.9
3231
SHELL [ "/bin/bash", "-c" ]
3332
RUN echo "source /usr/local/etc/profile.d/conda.sh" >> ~/.bashrc
3433
RUN source /usr/local/etc/profile.d/conda.sh && conda activate python3.6 && conda install -y -c conda-forge sox && conda install -y numpy
3534
RUN source /usr/local/etc/profile.d/conda.sh && conda activate python3.7 && conda install -y -c conda-forge sox && conda install -y numpy
3635
RUN source /usr/local/etc/profile.d/conda.sh && conda activate python3.8 && conda install -y -c conda-forge sox && conda install -y numpy
37-
RUN source /usr/local/etc/profile.d/conda.sh && conda activate python3.9 && conda install -y -c conda-forge sox && conda install -y numpy
3836
CMD [ "/bin/bash"]

0 commit comments

Comments
 (0)