diff options
| author | hathach <[email protected]> | 2023-12-18 20:07:17 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-12-18 20:07:17 +0700 |
| commit | c314cb290300ffa2cbd23e1d3dee71bb3f6174f7 (patch) | |
| tree | 433730b8d151afaa06c596a6b1ce1d70f8be907c /.github/workflows/build_arm.yml | |
| parent | 3c4db26e0125d42285f9723820e19a92bf69e14a (diff) | |
remove usage of linkermap, update checkout to v4
Diffstat (limited to '.github/workflows/build_arm.yml')
| -rw-r--r-- | .github/workflows/build_arm.yml | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/.github/workflows/build_arm.yml b/.github/workflows/build_arm.yml index 402b89e0a..47dea1925 100644 --- a/.github/workflows/build_arm.yml +++ b/.github/workflows/build_arm.yml @@ -8,6 +8,7 @@ on: - 'examples/**' - 'lib/**' - 'hw/**' + - 'tools/get_deps.py' - '.github/workflows/build_arm.yml' pull_request: branches: [ master ] @@ -16,6 +17,7 @@ on: - 'examples/**' - 'lib/**' - 'hw/**' + - 'tools/get_deps.py' - '.github/workflows/build_arm.yml' concurrency: @@ -54,25 +56,10 @@ jobs: release: '11.2-2022.02' - name: Checkout TinyUSB - uses: actions/checkout@v3 - - - name: Checkout hathach/linkermap - uses: actions/checkout@v3 - with: - repository: hathach/linkermap - path: linkermap + uses: actions/checkout@v4 - name: Get Dependencies run: python3 tools/get_deps.py ${{ matrix.family }} - name: Build run: python3 tools/build_make.py ${{ matrix.family }} - - - name: Linker Map - run: | - pip install linkermap/ - # find -quit to only print linkermap of 1 board per example - for ex in `ls -d examples/*/*/` - do - find ${ex} -name *.map -print -quit | xargs -I % sh -c 'echo "::group::%"; linkermap -v %; echo "::endgroup::"' - done |
