18 lines
305 B
YAML
18 lines
305 B
YAML
stages:
|
|
- test
|
|
- e2e
|
|
|
|
test-job:
|
|
stage: test
|
|
image: localhost:5000/huskbuilder:latest
|
|
script:
|
|
- cargo test
|
|
|
|
e2e-job:
|
|
stage: e2e
|
|
image: localhost:5000/mta:latest
|
|
script:
|
|
- echo "new"
|
|
- bash /usr/bin/prepare.sh $CI_COMMIT_BRANCH && bash /opt/husk/husk-milter/e2e-tests/runner.sh
|
|
|