From 11e1f556caf27857218c2bb49f98ae6dc6933dd3 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Mon, 11 Apr 2016 08:27:44 +0200 Subject: [PATCH] Gitlab-ci attempt #1 --- .gitlab-ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1585516d..15d74b08 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,21 @@ -image: dockingbay/fedora-rust:nightly +image: ubuntu:xenial + +before_script: + - curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh + - multirust default stable stages: - test + - deploy job1: stage: test script: - cargo test -v --manifest-path glsl-to-spirv/Cargo.toml - cargo test -v --manifest-path vulkano-shaders/Cargo.toml + - cargo build -v --manifest-path vulkano/Cargo.toml + +docs: + stage: deploy + script: + - cargo doc --manifest-path vulkano/Cargo.toml