summaryrefslogtreecommitdiff
path: root/.github/workflows/build_aarch64.yml
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-12-18 20:07:17 +0700
committerhathach <[email protected]>2023-12-18 20:07:17 +0700
commitc314cb290300ffa2cbd23e1d3dee71bb3f6174f7 (patch)
tree433730b8d151afaa06c596a6b1ce1d70f8be907c /.github/workflows/build_aarch64.yml
parent3c4db26e0125d42285f9723820e19a92bf69e14a (diff)
remove usage of linkermap, update checkout to v4
Diffstat (limited to '.github/workflows/build_aarch64.yml')
-rw-r--r--.github/workflows/build_aarch64.yml16
1 files changed, 1 insertions, 15 deletions
diff --git a/.github/workflows/build_aarch64.yml b/.github/workflows/build_aarch64.yml
index 8a91ee630..40fc8d63a 100644
--- a/.github/workflows/build_aarch64.yml
+++ b/.github/workflows/build_aarch64.yml
@@ -41,13 +41,7 @@ jobs:
python-version: '3.x'
- 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: Set Toolchain URL
run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz
@@ -74,11 +68,3 @@ jobs:
- name: Build
run: python3 tools/build_make.py ${{ matrix.family }}
-
- - name: Linker Map
- run: |
- pip install linkermap/
- for ex in `ls -d examples/device/*/`; do \
- find ${ex} -name *.map -print -quit | \
- xargs -I % sh -c 'echo "::group::%"; linkermap -v %; echo "::endgroup::"'; \
- done