File tree Expand file tree Collapse file tree
java/infra/docker/feature-server Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353 name : java-coverage-report
5454 path : ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/
5555
56+ build-docker-image-java :
57+ runs-on : ubuntu-latest
58+ strategy :
59+ matrix :
60+ component : [ feature-server-java ]
61+ env :
62+ REGISTRY : gcr.io/kf-feast
63+ steps :
64+ - uses : actions/checkout@v2
65+ with :
66+ submodules : ' true'
67+ - run : gcloud auth configure-docker --quiet
68+ - name : Get m2 cache
69+ run : |
70+ infra/scripts/download-maven-cache.sh \
71+ --archive-uri ${MAVEN_CACHE} \
72+ --output-dir .
73+ - name : Build image
74+ run : make build-${{ matrix.component }}-docker REGISTRY=${REGISTRY} VERSION=${GITHUB_SHA}
75+
5676 integration-test :
5777 # all jobs MUST have this if check for 'ok-to-test' or 'approved' for security purposes.
5878 if :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ COPY java/pom.xml .
1010COPY java/datatypes/pom.xml datatypes/pom.xml
1111COPY java/serving/pom.xml serving/pom.xml
1212COPY java/serving-client/pom.xml serving-client/pom.xml
13- COPY java/docs/ coverage/pom.xml docs/ coverage/pom.xml
13+ COPY java/coverage/pom.xml coverage/pom.xml
1414
1515# Setting Maven repository .m2 directory relative to /build folder gives the
1616# user to optionally use cached repository when building the image by copying
You can’t perform that action at this time.
0 commit comments