1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-11 12:23:45 +00:00
kickc/.gitlab-ci.yml

18 lines
325 B
YAML

image: maven:3-jdk-8
release:
stage: build
script:
- "mvn package"
- "ls target"
- "unzip -d target/release target/kickc-release.zip"
- "mv target/release/kickc/* ."
- "cat target/site/jacoco/index.html"
artifacts:
name: kickc_${CI_BUILD_REF_NAME}
paths:
- ./lib
- ./stdlib
- ./LICENSE*