File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11# Install conda dependencies
22conda install -y conda-build conda-verify zip
33
4+ # Make artifacts directory (will be uploaded to CircleCI after build)
5+ mkdir artifacts
6+
47# Perform build
5- conda build --python $PYTHON_VERSION recipe/
8+ conda build --python $PYTHON_VERSION recipe/ > artifacts/conda-build.out.txt 2>&1
69
710# Convert to other architectures
811mkdir -p ./conda_packages_${PYTHON_VERSION} /linux-64/
@@ -13,5 +16,4 @@ conda convert -p win-64 ./conda_packages_${PYTHON_VERSION}/linux-64/plotly-*.tar
1316conda convert -p win-32 ./conda_packages_${PYTHON_VERSION} /linux-64/plotly-* .tar.bz2 -o ./conda_packages_${PYTHON_VERSION} /
1417
1518# zip up packages into artifacts directory
16- mkdir artifacts
1719zip -r artifacts/conda_packages_${PYTHON_VERSION} .zip ./conda_packages_${PYTHON_VERSION} /
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ source:
1010
1111build :
1212 number : 0
13- script : " {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv "
13+ script : " {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -v "
1414
1515requirements :
1616 build :
You can’t perform that action at this time.
0 commit comments