From 8eea077c846728246b51c2cc72e58d477c3c7bf6 Mon Sep 17 00:00:00 2001
From: maximthomas <maxim.thomas@gmail.com>
Date: Mon, 25 Apr 2022 08:24:48 +0000
Subject: [PATCH] remove build workflow line breaks
---
.github/workflows/build.yml | 9 +--------
1 files changed, 1 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4086922..8f0672e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -56,14 +56,7 @@
if: runner.os == 'Linux'
shell: bash
run: |
- 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-interval=10s \
- --health-retries=10 \
- --health-timeout=10s \
- openidentityplatform/opendj
+ 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,,}
timeout 30s bash -c 'until docker inspect --format="{{json .State.Health.Status}}" opendj_1 | grep -q \"healthy\"; do sleep 10; done';
- name: Upload artifacts OpenDJ Server
uses: actions/upload-artifact@v3
--
Gitblit v1.10.0