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
2 changed files with 3 additions and 6 deletions

View File

@@ -50,9 +50,9 @@ jobs:
- name: Clone repository - name: Clone repository
run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }} run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }}
#- name: Build all production containers - name: Build all production containers
#working-directory: IoT-Systems working-directory: IoT-Systems
#run: docker-compose build run: docker-compose build
- name: Start all production containers - name: Start all production containers
working-directory: IoT-Systems working-directory: IoT-Systems
@@ -67,5 +67,4 @@ jobs:
- name: Clean up - name: Clean up
if: ${{always()}} if: ${{always()}}
working-directory: IoT-Systems
run: docker-compose down -v run: docker-compose down -v

View File

@@ -1,7 +1,5 @@
import sys import sys
print("Checking for dead containers...")
l = [i for i in sys.stdin.read().split("\n") if i] l = [i for i in sys.stdin.read().split("\n") if i]
header, statuses = l[0], l[1:] header, statuses = l[0], l[1:]