1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-25 20:32:25 +00:00

Attempt at making a release root dir. #235

This commit is contained in:
jespergravgaard 2019-08-09 00:03:59 +02:00
parent d3081d3fe1
commit 9a54c0f814
2 changed files with 12 additions and 11 deletions

View File

@ -7,16 +7,17 @@ release:
- "ls target"
- "unzip -d target/release target/kickc-release.zip"
- "mv target/release/kickc/lib/kickc-release.jar target/release/kickc/lib/kickc-${CI_COMMIT_REF_NAME}.jar"
- "mv target/release/kickc/* ."
- "mkdir ./kickc"
- "mv target/release/kickc/* ./kickc/"
- "cat target/site/jacoco/index.html"
artifacts:
name: kickc_${CI_COMMIT_REF_NAME}
paths:
- ./bin
- ./lib
- ./stdlib
- ./fragment
- ./examples
- ./LICENSE*
- ./NOTICE*
- ./*.pdf
- ./kickc/bin
- ./kickc/lib
- ./kickc/stdlib
- ./kickc/fragment
- ./kickc/examples
- ./kickc/LICENSE*
- ./kickc/NOTICE*
- ./kickc/*.pdf

View File

@ -132,9 +132,9 @@ public class KickC implements Callable<Void> {
@Override
public Void call() throws Exception {
System.out.println("//-------------------------------------------");
System.out.println("//--------------------------------------------------");
System.out.println("// " + getVersion() + " by Jesper Gravgaard ");
System.out.println("//-------------------------------------------");
System.out.println("//--------------------------------------------------");
Compiler compiler = new Compiler();