diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-07-06 12:33:33 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-07-06 12:33:33 +0200 |
commit | e4767bccc7324d4b61a334bf6c0558d0080045e2 (patch) | |
tree | 728a5df44f02ca10f760b979873c990cd4c0d265 /.gitlab-ci.yml | |
parent | 3422e5eb2819f5de304f25dc622f5284813bb9b4 (diff) | |
download | pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.tar.gz pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.tar.bz2 pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.zip |
remove NON-NLS comments, cleanup whitespace
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c2b35c3a..0f054b56 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ image: maven:3.8.5-openjdk-17 - + build-windows: stage: build cache: @@ -10,7 +10,7 @@ build-windows: - .m2/repository tags: - docker - script: + script: - mvn -B -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository clean install -Pwindows -Dno-native-profile artifacts: name: "PDFOver (Windows) on $CI_COMMIT_REF_SLUG" @@ -26,14 +26,14 @@ build-linux: - .m2/repository tags: - docker - script: + script: - mvn -B -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository clean install -Plinux -Dno-native-profile artifacts: name: "PDFOver (Linux) on $CI_COMMIT_REF_SLUG" paths: - "pdf-over-build/*" expire_in: 1 day - + build-mac: stage: build cache: @@ -42,7 +42,7 @@ build-mac: - .m2/repository tags: - docker - script: + script: - mvn -B -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository clean install -Pmac -Dno-native-profile artifacts: name: "PDFOver (Mac) on $CI_COMMIT_REF_SLUG" @@ -58,7 +58,7 @@ build-mac-aarch64: - .m2/repository tags: - docker - script: + script: - mvn -B -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository clean install -Pmac-aarch64 -Dno-native-profile artifacts: name: "PDFOver (Mac M1) on $CI_COMMIT_REF_SLUG" |