remove membrowse-targets.json as it is no longer required

This commit is contained in:
hathach
2026-02-11 00:41:46 +07:00
parent ff96b90def
commit dfe7a97d34
2 changed files with 0 additions and 507 deletions

View File

@ -79,19 +79,6 @@ jobs:
name: metrics-${{ matrix.arg }}
path: cmake-build/cmake-build-*/metrics.json
- name: Copy linker scripts for artifacts
if: ${{ inputs.upload-artifacts }}
run: |
for dir in cmake-build/cmake-build-*; do
board=$(basename "$dir" | sed 's/cmake-build-//')
ld_path=$(jq -r --arg b "$board" '.targets[] | select(.board == $b) | .ld // empty' .github/membrowse-targets.json)
if [ -n "$ld_path" ] && [ -f "$ld_path" ]; then
mkdir -p "cmake-build/$(dirname "$ld_path")"
cp "$ld_path" "cmake-build/$ld_path"
fi
done
shell: bash
- name: Upload Artifacts for Hardware Testing
if: ${{ inputs.upload-artifacts }}
uses: actions/upload-artifact@v5