mirror of
https://github.com/intari/search2_chatgpt.git
synced 2025-04-14 10:49:11 +00:00
even MORE logs
This commit is contained in:
parent
8b4a9b5cbb
commit
578d3890a5
1 changed files with 26 additions and 0 deletions
26
.github/workflows/python-tests.yml
vendored
26
.github/workflows/python-tests.yml
vendored
|
@ -9,6 +9,32 @@ on:
|
|||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
# Задача 0 - прогон диагностики
|
||||
diag:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Early diagnostics...
|
||||
run: |
|
||||
echo This is
|
||||
cat /etc/os-release
|
||||
echo Running on `uname -a` by `whoami`
|
||||
echo CPU info:
|
||||
lscpu
|
||||
echo PCI info
|
||||
lspci
|
||||
echo Memory:
|
||||
free -h
|
||||
echo Disk:
|
||||
df -h
|
||||
echo Docker is
|
||||
docker -v
|
||||
- name: Show Environment Variables Inside Job Container
|
||||
run: |
|
||||
echo "--- Environment Variables ---"
|
||||
env | sort # Выводим переменные окружения
|
||||
echo "---------------------------"
|
||||
echo "DOCKER_HOST variable is: '$DOCKER_HOST'" # Проверяем конкретно DOCKER_HOST
|
||||
|
||||
# --- Задача 1: Запуск тестов ---
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Reference in a new issue