mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-21 15:02:17 +01:00
* Downgrade Jenkins JDK version to Java 8 The unit tests cannot run properly with Java 11. We have to downgrade our image to use Java 8 instead until we have fixed this issue. * Fix unit tests that have not been adapted during the failed builds Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com>
10 lines
169 B
Makefile
10 lines
169 B
Makefile
VERSION:=8u275-b01
|
|
|
|
.PHONY:build
|
|
build:
|
|
docker build -t scmmanager/java-build:${VERSION} .
|
|
|
|
.PHONY:publish
|
|
publish: build
|
|
docker push scmmanager/java-build:${VERSION}
|