mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2025-02-16 17:12:29 +00:00
31 lines
637 B
YAML
31 lines
637 B
YAML
image: ubuntu:xenial
|
|
|
|
before_script:
|
|
- apt-get -y install sudo curl
|
|
- 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
|
|
|
|
pages:
|
|
stage: deploy
|
|
only:
|
|
- master
|
|
script:
|
|
- cargo doc --manifest-path vulkano/Cargo.toml
|
|
- rm -rf public
|
|
- mkdir public
|
|
- cp target/doc/* public
|
|
artifacts:
|
|
paths:
|
|
- public
|