Compare commits
2 commits
ac6bcbf296
...
c3b1b0f864
| Author | SHA1 | Date | |
|---|---|---|---|
| c3b1b0f864 | |||
| 82f2c034da |
2 changed files with 16 additions and 0 deletions
|
|
@ -43,6 +43,14 @@ jobs:
|
||||||
apt-get update -qq
|
apt-get update -qq
|
||||||
apt-get install -y -qq docker.io
|
apt-get install -y -qq docker.io
|
||||||
|
|
||||||
|
- name: Wait for Docker daemon
|
||||||
|
run: |
|
||||||
|
for i in $(seq 1 30); do
|
||||||
|
docker info && break
|
||||||
|
echo "Waiting for Docker daemon... ($i/30)"
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 --branch "${{ github.ref_name }}" \
|
git clone --depth=1 --branch "${{ github.ref_name }}" \
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,14 @@ jobs:
|
||||||
apt-get update -qq
|
apt-get update -qq
|
||||||
apt-get install -y -qq docker.io
|
apt-get install -y -qq docker.io
|
||||||
|
|
||||||
|
- name: Wait for Docker daemon
|
||||||
|
run: |
|
||||||
|
for i in $(seq 1 30); do
|
||||||
|
docker info && break
|
||||||
|
echo "Waiting for Docker daemon... ($i/30)"
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 --branch "${{ github.ref_name }}" \
|
git clone --depth=1 --branch "${{ github.ref_name }}" \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue