forked from akornatskyy/docker-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.woodpecker.yml
90 lines (84 loc) · 2.08 KB
/
.woodpecker.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
matrix:
LUA_VERSION:
- 5.1
- 5.2
- 5.3
- 5.4
FENNEL_VERSION:
- 1.5.1
steps:
- name: lua-alpine
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: lua/${LUA_VERSION}/Dockerfile.alpine
dry_run: false
username:
from_secret: docker_username
password:
from_secret: docker_token
repo: imolein/lua
tags:
- ${LUA_VERSION}-alpine
- ${LUA_VERSION}
- name: lua-ubuntu
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: lua/${LUA_VERSION}/Dockerfile.ubuntu
dry_run: false
username:
from_secret: docker_username
password:
from_secret: docker_token
repo: imolein/lua
tags:
- ${LUA_VERSION}-ubuntu
- name: luarocks-alpine
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: luarocks/${LUA_VERSION}/Dockerfile.slim
dry_run: false
username:
from_secret: docker_username
password:
from_secret: docker_token
repo: imolein/luarocks
tags:
- ${LUA_VERSION}-alpine-slim
- ${LUA_VERSION}-slim
depends_on:
- lua-alpine
- name: luarocks-alpine-fat
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: luarocks/${LUA_VERSION}/Dockerfile.fat
dry_run: false
username:
from_secret: docker_username
password:
from_secret: docker_token
repo: imolein/luarocks
tags:
- ${LUA_VERSION}-alpine
- ${LUA_VERSION}-fat
- ${LUA_VERSION}
depends_on:
- lua-alpine
- name: fennel-alpine
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: fennel/lua${LUA_VERSION}/Dockerfile.alpine
dry_run: false
username:
from_secret: docker_username
password:
from_secret: docker_token
repo: imolein/fennel
tags:
- ${FENNEL_VERSION}-${LUA_VERSION}-alpine
- ${FENNEL_VERSION}-${LUA_VERSION}
depends_on:
- lua-alpine
when:
branch: master
event: [push, cron]
cron: weekly rebuild