]> git.feebdaed.xyz Git - 0xmirror/mongoose.git/commitdiff
building health dashboard
authorSergio R. Caprile <scaprile@cesanta.com>
Tue, 2 Sep 2025 13:31:50 +0000 (10:31 -0300)
committerSergio R. Caprile <scaprile@cesanta.com>
Tue, 2 Sep 2025 13:35:44 +0000 (10:35 -0300)
.github/workflows/nightly.yml
test/health.sh [new file with mode: 0755]

index d55e514cd0c45f75f3d5e8c6103022ee0bbf46c3..a538c3a02d9941a29ab597787d12e97fba59508d 100644 (file)
@@ -42,7 +42,7 @@ jobs:
             ssh-private-key: ${{ secrets.HEALTH_TESTS_SSH_KEY }}
     - run: sudo apt -y update ; sudo apt -y install libmbedtls-dev libwolfssl-dev && test/setup_mqtt_server.sh && make -C test ${{ matrix.target }} > log
     - run: test/health.awk < log > json
-    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/linux_${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.ssl }}_${{ matrix.select }}_$(date +"%Y%m%d").json"
+    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/health/linux_${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.ssl }}_${{ matrix.select }}_$(date +"%Y%m%d").json"
   mip:
     runs-on: ubuntu-latest
     strategy:
@@ -68,7 +68,7 @@ jobs:
             ssh-private-key: ${{ secrets.HEALTH_TESTS_SSH_KEY }}
     - run: if [ "${{ matrix.target }}" == "mip_tap_test" ]; then ./test/setup_ga_network.sh ; fi && sudo apt -y update ; sudo apt -y install libmbedtls-dev libwolfssl-dev && make -C test ${{ matrix.target }} IPV6=0 > log
     - run: test/health.awk < log > json
-    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.ssl }}_$(date +"%Y%m%d").json"
+    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/health/${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.ssl }}_$(date +"%Y%m%d").json"
 
   mip89:
     runs-on: ubuntu-latest
@@ -169,7 +169,7 @@ jobs:
     - run: /opt/homebrew/opt/mosquitto/sbin/mosquitto -c /Users/runner/work/mongoose/mongoose/test/mosquitto.conf.macos &
     - run: make -C test test ASAN_OPTIONS= MBEDTLS=$(echo $(brew --cellar)/mbedtls*/*) OPENSSL=$(echo $(brew --cellar)/openssl*/*) WOLFSSL=$(echo $(brew --cellar)/wolfssl*/*) > log
     - run: test/health.awk < log > json
-    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/macos_test_cc_${{ matrix.ssl }}_${{ matrix.select }}_$(date +"%Y%m%d").json"
+    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/health/macos_test_cc_${{ matrix.ssl }}_${{ matrix.select }}_$(date +"%Y%m%d").json"
 
   windows:
     runs-on: ubuntu-latest
@@ -195,7 +195,7 @@ jobs:
             ssh-private-key: ${{ secrets.HEALTH_TESTS_SSH_KEY }}
     - run: ./test/setup_mqtt_server.sh && make -C test ${{ matrix.target }} > log
     - run: test/health.awk < log > json
-    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/windows_${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.ssl }}_${{ matrix.select }}_$(date +"%Y%m%d").json"
+    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/health/windows_${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.ssl }}_${{ matrix.select }}_$(date +"%Y%m%d").json"
  
   arm:
     runs-on: ubuntu-latest
@@ -233,7 +233,7 @@ jobs:
     - run: sudo apt -y install libpcap-dev
     - run: make -C test tutorials CFLAGS_EXTRA="${{ matrix.ssl }}" > log
     - run: test/health.awk < log > json
-    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/tutorials_${{ matrix.ssl }}_$(date +"%Y%m%d").json"
+    - run: scp -o "StrictHostKeyChecking=no" json "root@176.9.217.245:/data/downloads/health/tutorials_${{ matrix.ssl }}_$(date +"%Y%m%d").json"
     - run: make -C test clean_tutorials
 
   tutorials_win:
diff --git a/test/health.sh b/test/health.sh
new file mode 100755 (executable)
index 0000000..7232e39
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+cd /data/downloads/health
+find . -mtime +28 -not -name 'index*.json' -delete
+find . -name "*.json" -not -name 'index*.json' | jq -R . | jq -s . > index.json