aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8f8638e..8f1a579 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: gradle:6.8.3-jdk11
+image: gradle:8.6-jdk17
variables:
LC_ALL: "en_US.UTF-8"
@@ -18,11 +18,11 @@ include:
## skip jUnit tests in Test jobs to speed-up build time
dependency_scanning:
variables:
- DS_JAVA_VERSION: 11
+ DS_JAVA_VERSION: 17
spotbugs-sast:
variables:
- SAST_JAVA_VERSION: 11
+ SAST_JAVA_VERSION: 17
default:
@@ -63,11 +63,12 @@ release_packaging:
- tags
before_script:
- mkdir -p ~/.ssh
- - ssh-keyscan apps.egiz.gv.at >> ~/.ssh/known_hosts
- - chmod 644 ~/.ssh/known_hosts
+ #- ssh-keyscan apps.egiz.gv.at >> ~/.ssh/known_hosts
+ - echo $DEPLOY_EGIZ >> ~/.ssh/known_hosts
+ - chmod 644 ~/.ssh/known_hosts
script: |
cd ./moaSig
- ./gradlew assemble uploadArchives
+ ./gradlew assemble publish
artifacts:
when: always
name: "${CI_PROJECT_NAME}-${CI_COMMIT_SHORT_SHA}"