feat(ci): some fixes breaking drone ci
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
19
.drone.yml
19
.drone.yml
@@ -3,6 +3,10 @@ kind: pipeline
|
|||||||
type: docker
|
type: docker
|
||||||
name: build-backend
|
name: build-backend
|
||||||
|
|
||||||
|
clone:
|
||||||
|
depth: 0
|
||||||
|
recursive: true
|
||||||
|
|
||||||
# Запускать только если были изменения в папке backend/
|
# Запускать только если были изменения в папке backend/
|
||||||
trigger:
|
trigger:
|
||||||
event: [push, pull_request]
|
event: [push, pull_request]
|
||||||
@@ -35,12 +39,27 @@ kind: pipeline
|
|||||||
type: docker
|
type: docker
|
||||||
name: build-ping-helper
|
name: build-ping-helper
|
||||||
|
|
||||||
|
clone:
|
||||||
|
depth: 0
|
||||||
|
recursive: true
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event: [push, pull_request]
|
event: [push, pull_request]
|
||||||
path:
|
path:
|
||||||
- ping-helper/**
|
- ping-helper/**
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
# --- НАЧАЛО ОТЛАДОЧНОГО БЛОКА ---
|
||||||
|
- name: debug-filesystem
|
||||||
|
image: alpine/git # Образ с git и стандартными утилитами
|
||||||
|
commands:
|
||||||
|
- echo "--- Current directory content ---"
|
||||||
|
- ls -laR # Рекурсивно показываем все файлы, включая права и скрытые
|
||||||
|
- echo "--- Content of .gitmodules file ---"
|
||||||
|
- cat .gitmodules # Показываем, какие URL у субмодулей
|
||||||
|
- echo "--- Git submodule status ---"
|
||||||
|
- git submodule status # Самая важная команда! Показывает статус субмодулей
|
||||||
|
# --- КОНЕЦ ОТЛАДОЧНОГО БЛОКА ---
|
||||||
- name: build-and-publish-ping-helper
|
- name: build-and-publish-ping-helper
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
|
|||||||
Reference in New Issue
Block a user