diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08eb045..5e87844 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,7 +46,7 @@ test: - docker build --pull -t "$CI_REGISTRY_IMAGE" . - docker run --privileged -dit --name provs_test -v /var/run/docker.sock:/var/run/docker.sock $CI_REGISTRY_IMAGE - docker inspect -f '{{.State.Running}}' provs_test - - ./gradlew -x assemble test -Dtestdockerwithoutsudo=true -DexcludeTags=containertest + - ./gradlew -x assemble test -Dtestdockerwithoutsudo=true -DexcludeTags=extensivecontainertest artifacts: when: on_failure paths: diff --git a/install-provs.sh b/install-provs.sh deleted file mode 100755 index 37b3b97..0000000 --- a/install-provs.sh +++ /dev/null @@ -1,2 +0,0 @@ -mkdir -p $HOME/.provs -curl -N https://gitlab.com/domaindrivenarchitecture/provs/-/jobs/1857429466/artifacts/raw/build/libs/provs.jar -o $HOME/.provs/provs.jar diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt index ba58c26..3113498 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt @@ -7,17 +7,17 @@ import org.domaindrivenarchitecture.provs.framework.ubuntu.web.base.downloadFrom fun Prov.installBinariesProvs(reprovision: Boolean = false) = task { // check for latest stable release on: https://gitlab.com/domaindrivenarchitecture/provs/-/releases - // release 0.9.8 - val jobId = "2137287031" + // release 0.9.9 + val jobId = "2138969146" val installationPath = " /usr/local/bin/" - val provsDesktopSha256sum = "8ad8ca69adf9b3da0a56d088a8694b366528fdcb4ad6b5047b42f32c4877d7ce" - val provsServerSha256sum = "91adf9bf6bad18b891eed53e23ad03182824daf3c724599255ee8a56294bf88c" + val provsDesktopSha256sum = "e309ea598234c5128095d554dad569fcad26e054431cdebbcd50b7c40ee5276f" + val provsServerSha256sum = "659e3d8c08166288aa5c376194f28e19cbc401edbd9af4225d76c0880bc8518e" createDirs(installationPath, sudo = true) downloadFromURL( "https://gitlab.com/domaindrivenarchitecture/provs/-/jobs/$jobId/artifacts/raw/build/libs/provs-desktop.jar", - path = installationPath, + path = installationPath, filename = "provs-desktop.jar", sha256sum = provsDesktopSha256sum, sudo = true,