Skip to content

Commit 50ba150

Browse files
Release 0.1.4 (#17)
* Release 0.1.4 - Fix conda deployment by disabling anaconda telemetry
1 parent 1a17b86 commit 50ba150

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/build-upload-conda-base.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ env:
2727
bash miniconda.sh -b -u -p ./miniconda3;
2828
rm -rf miniconda.sh;
2929
export PATH=/home/pyompuser/miniconda3/bin:\${PATH};
30-
conda install -y -c conda-forge conda-build conda-verify anaconda-client;
30+
conda remove --name base conda-anaconda-telemetry
31+
conda install -q -y -c conda-forge conda-build conda-verify anaconda-client;
3132
conda config --set anaconda_upload yes;
3233
SETUP_REPO: |
3334
git clone https://github.com/Python-for-HPC/PyOMP;
@@ -60,7 +61,8 @@ jobs:
6061
show-channel-urls: true
6162
- name: Build and upload llvm-openmp-dev
6263
run: |
63-
conda install -y -c conda-forge conda-build conda-verify anaconda-client;
64+
conda remove --name base conda-anaconda-telemetry
65+
conda install -q -y -c conda-forge conda-build conda-verify anaconda-client;
6466
conda config --set anaconda_upload yes;
6567
conda build --user python-for-hpc --label ${{ inputs.label }} \
6668
-c python-for-hpc -c conda-forge \
@@ -92,7 +94,8 @@ jobs:
9294
show-channel-urls: true
9395
- name: Build and upload llvmlite
9496
run: |
95-
conda install -y -c conda-forge conda-build conda-verify anaconda-client;
97+
conda remove --name base conda-anaconda-telemetry
98+
conda install -q -y -c conda-forge conda-build conda-verify anaconda-client;
9699
conda config --set anaconda_upload yes;
97100
conda build --user python-for-hpc --label ${{ inputs.label }} \
98101
-c python-for-hpc -c conda-forge \
@@ -124,7 +127,8 @@ jobs:
124127
show-channel-urls: true
125128
- name: Build and upload numba
126129
run: |
127-
conda install -y -c conda-forge conda-build conda-verify anaconda-client;
130+
conda remove --name base conda-anaconda-telemetry
131+
conda install -q -y -c conda-forge conda-build conda-verify anaconda-client;
128132
conda config --set anaconda_upload yes;
129133
conda build --user python-for-hpc --label ${{ inputs.label }} \
130134
-c python-for-hpc -c conda-forge \
@@ -156,7 +160,8 @@ jobs:
156160
show-channel-urls: true
157161
- name: Build and upload pyomp
158162
run: |
159-
conda install -y -c conda-forge conda-build conda-verify anaconda-client;
163+
conda remove --name base conda-anaconda-telemetry
164+
conda install -q -y -c conda-forge conda-build conda-verify anaconda-client;
160165
conda config --set anaconda_upload yes;
161166
conda build --user python-for-hpc --label ${{ inputs.label }} \
162167
-c python-for-hpc -c conda-forge \

0 commit comments

Comments
 (0)