1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-02-18 01:30:56 +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" - "ls target"
- "unzip -d target/release target/kickc-release.zip" - "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/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" - "cat target/site/jacoco/index.html"
artifacts: artifacts:
name: kickc_${CI_COMMIT_REF_NAME} name: kickc_${CI_COMMIT_REF_NAME}
paths: paths:
- ./bin - ./kickc/bin
- ./lib - ./kickc/lib
- ./stdlib - ./kickc/stdlib
- ./fragment - ./kickc/fragment
- ./examples - ./kickc/examples
- ./LICENSE* - ./kickc/LICENSE*
- ./NOTICE* - ./kickc/NOTICE*
- ./*.pdf - ./kickc/*.pdf

View File

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