This commit is contained in:
parent
f89c3b5268
commit
de19a799b0
1 changed files with 24 additions and 2 deletions
26
.drone.yml
26
.drone.yml
|
@ -1,6 +1,6 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: windows
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
|
@ -12,7 +12,6 @@ steps:
|
||||||
- rustup toolchain install stable-x86_64-pc-windows-gnu
|
- rustup toolchain install stable-x86_64-pc-windows-gnu
|
||||||
- rustup target add x86_64-pc-windows-gnu
|
- rustup target add x86_64-pc-windows-gnu
|
||||||
- rustup component add clippy
|
- rustup component add clippy
|
||||||
- cargo clippy
|
|
||||||
- cargo clippy --target x86_64-pc-windows-gnu
|
- cargo clippy --target x86_64-pc-windows-gnu
|
||||||
- cargo build --release --target x86_64-pc-windows-gnu
|
- cargo build --release --target x86_64-pc-windows-gnu
|
||||||
- strip target/x86_64-pc-windows-gnu/release/cggitem_sets.exe
|
- strip target/x86_64-pc-windows-gnu/release/cggitem_sets.exe
|
||||||
|
@ -27,3 +26,26 @@ steps:
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: linux
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: rust:alpine
|
||||||
|
commands:
|
||||||
|
- cargo clippy
|
||||||
|
- cargo build --release
|
||||||
|
- strip target/release/cggitem_sets
|
||||||
|
- name: deploy
|
||||||
|
image: alpine:latest
|
||||||
|
commands:
|
||||||
|
- apk add --no-cache curl
|
||||||
|
- curl -u drone:$MVN_PWD -X POST 'https://nexus.nyyu.dev/service/rest/v1/components?repository=maven-releases' -F maven2.groupId=dev.nyyu -F maven2.artifactId=cggitem_sets -F maven2.version=$(awk -F ' = ' '$1 ~ /version/ { gsub(/["]/, "", $2); printf("%s",$2) }' Cargo.toml)-$(date +%Y%m%d%H%M%S) -F maven2.asset1=@target/release/cggitem_sets -F maven2.asset1.extension=elf
|
||||||
|
environment:
|
||||||
|
MVN_PWD:
|
||||||
|
from_secret: maven_password
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- master
|
Loading…
Add table
Reference in a new issue