This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
generated from TrueDoctor/DiscoBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
67 lines (64 loc) · 1.43 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
kind: pipeline
name: default
steps:
- name: build
image: truedoctor/rust-wasm:latest
pull: if-not-exists
volumes:
- name: cargo
path: /usr/local/cargo
commands:
- nix-shell --run 'git submodule init && git submodule update'
- nix-shell --run 'cargo make all' --arg inCI true # build all projects
- name: test
image: truedoctor/rust-wasm:latest
pull: if-not-exists
volumes:
- name: cargo
path: /usr/local/cargo
commands:
- nix-shell --run 'cargo make test' --arg inCI true # test all projects
- name: doc
image: truedoctor/rust-wasm:latest
pull: if-not-exists
when:
branch:
- master
volumes:
- name: cargo
path: /usr/local/cargo
- name: doc
path: /drone/src/target/doc
commands:
- nix-shell --run 'cargo doc --no-deps' --arg inCI true # document all projects
- name: demo
image: truedoctor/rust-wasm:latest
pull: if-not-exists
when:
branch:
- master
volumes:
- name: demo
path: /tmp/demo
- name: cargo
path: /usr/local/cargo
commands:
- cp -r wasm /tmp/demo
- cp -r res /tmp/demo
- name: format
image: truedoctor/rust-wasm:latest
pull: if-not-exists
volumes:
- name: cargo
path: /usr/local/cargo
commands:
- nix-shell --run 'cargo make check-format' --arg inCI true # check formatting for all projects
volumes:
- name: demo
host:
path: /usr/website/ratatosk
- name: doc
host:
path: /usr/website/ratatosk/doc
- name: cargo
temp: {}