1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 02:24:34 +00:00
kickc/.gitlab-ci.yml

25 lines
397 B
YAML

image: maven:3-jdk-8
compile:
stage: build
script:
- "mvn package"
artifacts:
expire_in: 5mins
paths:
- target/kickc-release.zip
release:
stage: deploy
script:
- "ls target"
- "unzip -d target/release target/kickc-release.zip"
- "mv target/release/kickc/* ."
artifacts:
name: kickc_${CI_BUILD_REF_NAME}
paths:
- ./lib
- ./stdlib
- ./LICENSE*