mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

maximthomas
25.59.2022 32d446a9723ff1da78af8340a1b19b832bb2c174
add git docker version to docker test step
1 files modified
2 ■■■ changed files
.github/workflows/build.yml 2 ●●● patch | view | raw | blame | history
.github/workflows/build.yml
@@ -56,7 +56,7 @@
      if: runner.os == 'Linux'
      shell: bash
      run:   |
         echo '${GITHUB_REPOSITORY,,}:$git_version_last'
         git fetch -t; export git_version_last="$(git describe --abbrev=0 --tags)" ; echo "last release: $git_version_last"
         docker run --rm -it -d --name=opendj_1  --health-cmd='/opt/opendj/bin/ldapsearch --hostname localhost --port 1636 --bindDN "cn=Directory Manager" --bindPassword password --useSsl --trustAll --baseDN "" --searchScope base "(objectClass=*)" 1.1 || /opt/opendj/bin/stop-ds || exit 1'  --health-retries=10 --health-timeout=10s '${GITHUB_REPOSITORY,,}:$git_version_last'
         timeout 30s bash -c 'until docker inspect --format="{{json .State.Health.Status}}" opendj_1 | grep -q \"healthy\"; do sleep 10; done'
         docker stop opendj_1 || true