forked from conda-forge/netifaces-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
78 lines (69 loc) · 1.97 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
kind: pipeline
name: linux_aarch64_python3.6
platform:
os: linux
arch: arm64
steps:
- name: Install and build
image: condaforge/linux-anvil-aarch64
environment:
CONFIG: linux_aarch64_python3.6
UPLOAD_PACKAGES: True
PLATFORM: linux-aarch64
BINSTAR_TOKEN:
from_secret: BINSTAR_TOKEN
commands:
- export FEEDSTOCK_ROOT="$DRONE_WORKSPACE"
- export RECIPE_ROOT="$FEEDSTOCK_ROOT/recipe"
- export CI=drone
- export GIT_BRANCH="$DRONE_BRANCH"
- sed -i '$ichown -R conda:conda "$FEEDSTOCK_ROOT"' /opt/docker/bin/entrypoint
- /opt/docker/bin/entrypoint $FEEDSTOCK_ROOT/.scripts/build_steps.sh
- echo "Done building"
---
kind: pipeline
name: linux_aarch64_python3.7
platform:
os: linux
arch: arm64
steps:
- name: Install and build
image: condaforge/linux-anvil-aarch64
environment:
CONFIG: linux_aarch64_python3.7
UPLOAD_PACKAGES: True
PLATFORM: linux-aarch64
BINSTAR_TOKEN:
from_secret: BINSTAR_TOKEN
commands:
- export FEEDSTOCK_ROOT="$DRONE_WORKSPACE"
- export RECIPE_ROOT="$FEEDSTOCK_ROOT/recipe"
- export CI=drone
- export GIT_BRANCH="$DRONE_BRANCH"
- sed -i '$ichown -R conda:conda "$FEEDSTOCK_ROOT"' /opt/docker/bin/entrypoint
- /opt/docker/bin/entrypoint $FEEDSTOCK_ROOT/.scripts/build_steps.sh
- echo "Done building"
---
kind: pipeline
name: linux_aarch64_python3.8
platform:
os: linux
arch: arm64
steps:
- name: Install and build
image: condaforge/linux-anvil-aarch64
environment:
CONFIG: linux_aarch64_python3.8
UPLOAD_PACKAGES: True
PLATFORM: linux-aarch64
BINSTAR_TOKEN:
from_secret: BINSTAR_TOKEN
commands:
- export FEEDSTOCK_ROOT="$DRONE_WORKSPACE"
- export RECIPE_ROOT="$FEEDSTOCK_ROOT/recipe"
- export CI=drone
- export GIT_BRANCH="$DRONE_BRANCH"
- sed -i '$ichown -R conda:conda "$FEEDSTOCK_ROOT"' /opt/docker/bin/entrypoint
- /opt/docker/bin/entrypoint $FEEDSTOCK_ROOT/.scripts/build_steps.sh
- echo "Done building"