forked from KomodoPlatform/komodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
28 lines (28 loc) · 839 Bytes
/
.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
kind: pipeline
type: docker
name: default
platform:
arch: arm64
os: linux
steps:
- name: install-dependencies
image: ubuntu:focal
commands:
- echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
- apt update && apt dist-upgrade -y
- apt install build-essential pkg-config libc6-dev m4 autoconf libtool libncurses-dev unzip git zlib1g-dev wget libcurl4-gnutls-dev bsdmainutils automake curl libsodium-dev libboost-dev libdb++-dev -y -q
- ./zcutil/fetch-params-alt.sh
- BUILD=aarch64-linux-gnu ./zcutil/build.sh -j$(nproc)
- file src/komodod
- file src/komodo-cli
- tar -cjvf armv8.tar.gz src/komodod src/komodo-cli
- name: publish
image: plugins/github-release
settings:
api_key: drone-ci
files:
- armv8.tar.gz
when:
event:
- tag v0.7.0-native-armvi8
- push