[go: up one dir, main page]

Menu

[9849bf]: / gitlab-ci.yml  Maximize  Restore  History

Download this file

38 lines (35 with data), 525 Bytes

 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
stages:
- build
- test
- dist
- clean
build:
stage: build
script:
- cd MySQL-Admin-Ajax/
- perl Build.PL
- ./Build
build:
stage: test
script:
- cd MySQL-Admin-Ajax/
- ./Build test
dependencies:
- build
build:
stage: dist
script:
- cd MySQL-Admin-Ajax/
- ./Build manifest
- ./Build dist
- ./Build disttest
dependencies:
- test
build:
stage: dist
script:
- cd MySQL-Admin-Ajax/
- ./Build clean
- ./Build realclean
dependencies:
- test