Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove linkermap in ci since it failed to install #352

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/workflows/build_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ jobs:
- name: Checkout common submodules in lib
run: git submodule update --init lib/tinyusb lib/uf2

- name: Checkout linkermap
uses: actions/checkout@v3
with:
repository: hathach/linkermap
path: linkermap

- name: Install ARM GCC
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
Expand All @@ -79,7 +73,6 @@ jobs:
ENV_PORT=`dirname $ENV_PORT`
echo ENV_PORT=$ENV_PORT >> $GITHUB_ENV
echo BIN_PATH=$ENV_PORT/_bin/${{ matrix.board }} >> $GITHUB_ENV
pip3 install linkermap/

- name: Build
run: |
Expand All @@ -88,9 +81,6 @@ jobs:
make -C $ENV_PORT BOARD=${{ matrix.board }} all self-update copy-artifact
for app in ${{ env.ENV_PORT }}/apps/*/; do if [ $app != 'apps/self_update/' ]; then make -C $app BOARD=${{ matrix.board }} all; fi done

- name: Linker Map
run: make -C $ENV_PORT BOARD=${{ matrix.board }} linkermap

- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.board }}
Expand Down