-
Notifications
You must be signed in to change notification settings - Fork 3
/
.drone.yml
49 lines (42 loc) · 899 Bytes
/
.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
kind: pipeline
name: default
steps:
- name: deps
image: docker:git
commands:
- git clone -b devel https://bia-christian.de/gitea/choener/Lib-DPutils.git
- git clone -b devel https://bia-christian.de/gitea/choener/Lib-OrderedBits.git
- name: build
image: haskell
volumes:
- name: cache
path: /tmp/cache
commands:
- mkdir -p /tmp/cache/.cabal
- ln -s /tmp/cache/.cabal /root/.cabal
- ls
- ls ../
- cabal update
- cabal new-build
- name: test
image: haskell
volumes:
- name: cache
path: /tmp/cache
commands:
- mkdir -p /tmp/cache/.cabal
- ln -s /tmp/cache/.cabal /root/.cabal
- cabal new-test
- name: haddock
image: haskell
volumes:
- name: cache
path: /tmp/cache
commands:
- mkdir -p /tmp/cache/.cabal
- ln -s /tmp/cache/.cabal /root/.cabal
- cabal new-haddock
volumes:
- name: cache
host:
path: /home/choener/drone