File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 22 - check
33 - build
44 - test
5+ - publish
56 - sync
67
78check-code :
@@ -52,6 +53,13 @@ test-code:
5253 - " mls/build/test-results/**/*.xml"
5354
5455
56+ publish :
57+ stage : publish
58+ script :
59+ - " apply_overlay bc-java-pub ./"
60+ - " ecr_login"
61+ - " ecr_pull vm_base_intel latest"
62+ - " ci_docker_run \" vm_base_intel:latest\" \" bc-java\" \" /workspace/bc-java/ci/pub.sh\" "
5563
5664spongycastle :
5765 stage : " sync"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ #
6+ # This script is for running inside the docker container
7+ #
8+
9+ cd /workspace/bc-java
10+ source ci/common.sh
11+
12+
13+
14+ export JAVA_HOME=` openjdk_21`
15+ export PATH=$JAVA_HOME /bin:$PATH
16+
17+
18+ ./gradlew clean build publishAllPublicationsToCwmavenRepository -x test
19+
20+
You can’t perform that action at this time.
0 commit comments