ci(debug): add workspace dump and docker install/version steps
This commit is contained in:
parent
4930e5ef3e
commit
b3cb20ab41
@ -34,6 +34,22 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
git submodule sync --recursive
|
git submodule sync --recursive
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
- name: Debug workspace
|
||||||
|
run: |
|
||||||
|
pwd
|
||||||
|
ls -la
|
||||||
|
git rev-parse --abbrev-ref HEAD || true
|
||||||
|
if [ -f .gitmodules ]; then echo ".gitmodules present"; cat .gitmodules; else echo "NO .gitmodules"; fi
|
||||||
|
git submodule status || true
|
||||||
|
- name: Install docker client
|
||||||
|
run: |
|
||||||
|
apt-get update -y
|
||||||
|
apt-get install -y docker.io
|
||||||
|
- name: Docker info
|
||||||
|
run: |
|
||||||
|
which docker || true
|
||||||
|
docker version || true
|
||||||
|
docker info || true
|
||||||
- name: Build and push images
|
- name: Build and push images
|
||||||
env:
|
env:
|
||||||
REGISTRY: git.4nkweb.com
|
REGISTRY: git.4nkweb.com
|
||||||
|
Loading…
x
Reference in New Issue
Block a user