You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.4 KiB
YAML

kind: pipeline
type: docker
name: Test on Linux (ARM64)
platform:
os: linux
arch: arm64
steps:
- name: Test
image: rust
commands:
- apt update && apt-get install libhtml-parser-perl zip -y
- make test
- >
zip -j aarch64-unknown-linux-gnu-builds.zip
target/debug/skyd target/debug/skysh target/debug/sky-bench
when:
event:
- push
- name: Upload artifacts
image: plugins/s3
settings:
access_key:
from_secret: s3_access_key
secret_key:
from_secret: s3_secret_key
bucket: everycommit
source: aarch64-unknown-linux-gnu-builds.zip
target: ${DRONE_COMMIT}
path_style: true
endpoint:
from_secret: storage_s3_url
when:
event:
- push
- name: Package release
image: rust
environment:
ARTIFACT: aarch64-linux-gnu
commands:
- make bundle
- make deb
- mv *.deb skytable-${DRONE_TAG}-$ARTIFACT.deb
when:
event:
- tag
- name: Release bundle
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
- "*.deb"
- "*.zip"
when:
event:
- tag
---
kind: pipeline
type: docker
name: Test on Linux (x86_64)
steps:
- name: Test
image: rust
commands:
- apt update && apt-get install libhtml-parser-perl -y
- make test