mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 03:21:13 +00:00
93bd88e681
Now that Cargo tests are being run on the worker node directly, we can leave the bare minimum in Travis, which is taking care of the release deployment. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
17 lines
227 B
YAML
17 lines
227 B
YAML
language: rust
|
|
|
|
rust:
|
|
- stable
|
|
|
|
script:
|
|
- cargo build --release
|
|
|
|
deploy:
|
|
provider: releases
|
|
api_key: $GITHUB_OAUTH_TOKEN
|
|
file: target/release/cloud-hypervisor
|
|
skip_cleanup: true
|
|
draft: true
|
|
on:
|
|
tags: true
|