1
mirror of https://github.com/CarmJos/TimeForFlight.git synced 2024-09-19 20:15:45 +00:00
TimeForFlight/.gitlab-ci.yml
2020-07-31 18:36:44 +08:00

23 lines
270 B
YAML

stages:
- check
- build
# 构建 Job
check:
stage: check
tags:
- maven
script:
- mvn -v
build:
stage: build
tags:
- maven
script:
- mvn install
- ls ./target/*.jar
artifacts:
expire_in: 1 week
paths:
- ./target/*.jar