]> git.proxmox.com Git - ceph.git/blob - ceph/src/arrow/dev/tasks/conda-recipes/azure.clean.yml
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / dev / tasks / conda-recipes / azure.clean.yml
1 jobs:
2 - job: linux
3 pool:
4 vmImage: ubuntu-latest
5 timeoutInMinutes: 360
6
7 steps:
8 - script: |
9 git clone --no-checkout {{ arrow.remote }} arrow
10 git -C arrow fetch -t {{ arrow.remote }} {{ arrow.branch }}
11 git -C arrow checkout FETCH_HEAD
12 git -C arrow submodule update --init --recursive
13 displayName: Clone arrow
14
15 - script: |
16 conda install -y -c conda-forge pandas anaconda-client packaging
17 displayName: Install requirements
18
19 - script: |
20 {% if arrow.branch == 'master' %}
21 mkdir -p $HOME/.continuum/anaconda-client/tokens/
22 echo $(CROSSBOW_ANACONDA_TOKEN) > $HOME/.continuum/anaconda-client/tokens/https%3A%2F%2Fapi.anaconda.org.token
23 {% endif %}
24 eval "$(conda shell.bash hook)"
25 conda activate base
26 python3 arrow/dev/tasks/conda-recipes/clean.py {% if arrow.branch == 'master' %}FORCE{% endif %}
27 displayName: Delete outdated packages
28