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.

58 lines
1.3 KiB
YAML

# This workflow doesn't support cache invalidation for unused dependencies at the moment
kind: pipeline
type: ssh
name: Build on M1
environment:
CARGO_TERM_COLOR: always
server:
host:
from_secret: host
user:
from_secret: user
password:
from_secret: password
steps:
- name: Update rust
commands:
- /usr/local/bin/rustup-update
- name: Run tests
environment:
SRCENV:
from_secret: srcenv
CARGO_HOME:
from_secret: cargohome
HACK_SKYD_TEST_IGNORE_TREE_TEST_M1: yes
commands:
- source $SRCENV/.cargo/env
- export RUSTUP_HOME=$SRCENV/.rustup
- make test
when:
event:
exclude:
- tag
- name: Build bundle
environment:
SRCENV:
from_secret: srcenv
CARGO_HOME:
from_secret: cargohome
TARGET: aarch64-apple-darwin
VERSION: ${DRONE_TAG}
ARTIFACT: aarch64-apple-darwin
TOOLDIR:
from_secret: tooldir
GITHUB_TOKEN:
from_secret: github_token
commands:
- source $SRCENV/.cargo/env
- export RUSTUP_HOME=$SRCENV/.rustup
- make bundle
- $TOOLDIR/hub release edit $($TOOLDIR/gfind . -type f -name "*.zip" -printf "-a %p ") -m "" "$VERSION"
when:
event:
- tag