Julien CLEMENT
b3edf35855
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
22 lines
478 B
YAML
22 lines
478 B
YAML
kind: pipeline
|
|
name: build
|
|
|
|
steps:
|
|
- name: build
|
|
image: rustlang/rust:nightly
|
|
commands:
|
|
- cargo install bootimage
|
|
- rustup component add llvm-tools-preview
|
|
- rustup component add rust-src
|
|
- cargo bootimage
|
|
|
|
- name: release
|
|
image: plugins/gitea-release
|
|
settings:
|
|
api_key:
|
|
from_secret: api_key
|
|
base_url: http://gitea_web_1:3000
|
|
files: target/x86_64-julios/debug/bootimage-julios.bin
|
|
when:
|
|
event: tag
|