From 154ab7ccbb07c318034592b5582146629d3dffc7 Mon Sep 17 00:00:00 2001 From: Logan Rundle <154925928+LoganRundle-1@users.noreply.github.com> Date: Tue, 13 Jan 2026 17:48:19 -0500 Subject: [PATCH 1/3] added workflow folder --- .github/{ => workflows}/native-test.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflows}/native-test.yml (100%) diff --git a/.github/native-test.yml b/.github/workflows/native-test.yml similarity index 100% rename from .github/native-test.yml rename to .github/workflows/native-test.yml From 6a55b1f443c1ff21057824adc720bea2fdde9a53 Mon Sep 17 00:00:00 2001 From: Logan Rundle <154925928+LoganRundle-1@users.noreply.github.com> Date: Tue, 13 Jan 2026 17:55:25 -0500 Subject: [PATCH 2/3] added file tree for debugging --- .github/workflows/native-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/native-test.yml b/.github/workflows/native-test.yml index ed7da06..0793267 100644 --- a/.github/workflows/native-test.yml +++ b/.github/workflows/native-test.yml @@ -6,8 +6,6 @@ on: - '**' workflow_dispatch: - - jobs: test-native: @@ -29,10 +27,14 @@ jobs: mkdir -p native/lib mv avionics native/lib/avionics + - name: Show native directory structure + run: | + echo "===== native directory tree =====" + ls -R native + - name: Download Rocket-test-data v1.0.0 release CSVs run: | mkdir -p native/data - curl -s https://api.github.com/repos/CURocketEngineering/Rocket-test-data/releases/tags/v1.0.0 \ | jq -r '.assets[].browser_download_url' \ | while read url; do From ad2e3c6a822e451e9adf86a6ccf8ea423973b84b Mon Sep 17 00:00:00 2001 From: Logan Rundle <154925928+LoganRundle-1@users.noreply.github.com> Date: Tue, 13 Jan 2026 18:03:26 -0500 Subject: [PATCH 3/3] move tree folder --- .github/workflows/native-test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/native-test.yml b/.github/workflows/native-test.yml index 0793267..e2ae12b 100644 --- a/.github/workflows/native-test.yml +++ b/.github/workflows/native-test.yml @@ -27,10 +27,6 @@ jobs: mkdir -p native/lib mv avionics native/lib/avionics - - name: Show native directory structure - run: | - echo "===== native directory tree =====" - ls -R native - name: Download Rocket-test-data v1.0.0 release CSVs run: | @@ -45,6 +41,11 @@ jobs: - name: Install PlatformIO Core run: | pip install -U platformio + + - name: Show native directory structure + run: | + echo "===== native directory tree =====" + ls -R native - name: Run PlatformIO Tests working-directory: ./native