Compare commits

..

1 Commits

Author SHA1 Message Date
cdc5c7981d [P] Add general smoke test and Store incremental test
Some checks failed
Component testing / Hub testing (push) Successful in 19s
Component testing / Store testing (push) Successful in 21s
Component testing / Integration smoke testing (push) Has been cancelled
2026-03-23 17:38:01 +02:00
3 changed files with 1 additions and 20 deletions

View File

@@ -1,16 +0,0 @@
name: Reset docker state
on: workflow_dispatch
jobs:
reset:
runs-on: host-arch-x86_64
name: Reset docker state
steps:
- name: Stop all containers
run: docker stop $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove all containers
run: docker rm $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove extra volumes
run: docker volume rm road_vision_postgres_data road_vision_pgadmin-data

View File

@@ -67,5 +67,4 @@ jobs:
- name: Clean up
if: ${{always()}}
working-directory: IoT-Systems
run: docker-compose down -v

View File

@@ -1,7 +1,5 @@
import sys
print("Checking for dead containers...")
l = [i for i in sys.stdin.read().split("\n") if i]
header, statuses = l[0], l[1:]
@@ -16,4 +14,4 @@ for i in statuses:
print(f"Crash detected in {service_name}")
exit_code = 1
sys.exit(exit_code)
sys.exit(1)