123456789101112131415161718 |
- pipeline:
- build:
- image: drwx/goblin-deps
- commands:
- - rm -rf target/doc
- - cargo test --all --features weak-scrypt
- - cargo build
- deploy:
- image: drwx/goblin-deps
- commands:
- - cargo doc --all --no-deps
- - rm -rf /doc/*
- - cp -a target/doc/* /doc/
- volumes:
- - /var/www/doc.drwx.org/goblin:/doc
- when:
- branch: master
- event: push
|