Compare commits

..

1 Commits

Author SHA1 Message Date
16b8fe9d56 [P] Add general smoke test and Store incremental test
Some checks failed
Component testing / Hub testing (push) Successful in 23s
Component testing / Store testing (push) Successful in 20s
Component testing / Integration smoke testing (push) Failing after 1m23s
2026-03-23 17:47:42 +02:00
2 changed files with 6 additions and 3 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,4 +67,5 @@ 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,5 +1,7 @@
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:]