Use in-container docker
parent
e56f17ea6b
commit
4454d97e94
|
|
@ -7,7 +7,7 @@ on:
|
||||||
branches: '*'
|
branches: '*'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
NODE_DEBUG: http
|
DOCKER_HOST: unix:///var/run/dind.sock
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
|
@ -34,6 +34,10 @@ jobs:
|
||||||
run: echo '${{ toJSON(vars) }}'
|
run: echo '${{ toJSON(vars) }}'
|
||||||
- name: Dump secrets context
|
- name: Dump secrets context
|
||||||
run: echo '${{ toJSON(secrets) }}'
|
run: echo '${{ toJSON(secrets) }}'
|
||||||
|
- name: Start dockerd
|
||||||
|
run: |
|
||||||
|
dockerd -H $DOCKER_HOST --userland-proxy=false &
|
||||||
|
sleep 5
|
||||||
- name: Run test script
|
- name: Run test script
|
||||||
run: ./scripts/run-test.sh
|
run: ./scripts/run-test.sh
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue