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