linguini1 commented on code in PR #18519:
URL: https://github.com/apache/nuttx/pull/18519#discussion_r2909208387


##########
.github/workflows/ota-resilience-canary.yml:
##########
@@ -0,0 +1,171 @@
+name: OTA resilience canary
+
+on:
+  schedule:
+    - cron: "0 8 * * 0"
+  workflow_dispatch:
+    inputs:
+      fault_budget:
+        description: Number of fault points to test across the write range
+        required: true
+        default: "64"
+
+permissions:
+  contents: read
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
+jobs:
+  nxboot-canary:
+    runs-on: ubuntu-22.04
+    timeout-minutes: 120
+    env:
+      TOOLCHAIN_VERSION: 13.2.1-1.1
+      TOOLCHAIN_URL: 
https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v13.2.1-1.1/xpack-arm-none-eabi-gcc-13.2.1-1.1-linux-x64.tar.gz
+      TOOLCHAIN_SHA256: 
1252a8cafe9237de27a765376697230368eec21db44dc3f1edeb8d838dabd530
+      RENODE_URL: https://builds.renode.io/renode-1.16.1.linux-dotnet.tar.gz
+      PYTHONUNBUFFERED: "1"
+
+    steps:
+      - name: Checkout NuttX
+        uses: actions/checkout@v4
+        with:
+          path: nuttx
+
+      - name: Checkout NuttX apps
+        uses: actions/checkout@v4
+        with:
+          repository: apache/nuttx-apps
+          path: nuttx-apps
+
+      - name: Checkout tardigrade
+        uses: actions/checkout@v4
+        with:
+          repository: neilberkman/tardigrade

Review Comment:
   This would make NuttX CI and testing reliant on your own project, which 
(from what I can see) is only four days old. With all due respect, this may be 
an unreliable test method/security risk if it's externally maintained.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to