cederom commented on code in PR #18519:
URL: https://github.com/apache/nuttx/pull/18519#discussion_r2910352353
##########
.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:
agree, if we want anything like this in the best scenario this would be part
of the NuttX repo :-) i guess this is still work in progress and we may see
that in the upstream when ready right? :-)
--
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]