From ed350192c9f7c5c181b9b44c41ef13dd7234dc98 Mon Sep 17 00:00:00 2001 From: Guillaume Endignoux <guillaumee@google.com> Date: Thu, 5 Mar 2020 12:28:01 +0100 Subject: [PATCH] Move third_party/tock to a long build directory to catch limits in the linker scripts. --- .github/workflows/boards_build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/boards_build.yml b/.github/workflows/boards_build.yml index 5231b92..5c19e93 100644 --- a/.github/workflows/boards_build.yml +++ b/.github/workflows/boards_build.yml @@ -29,8 +29,10 @@ jobs: run: python -m pip install --upgrade pip setuptools wheel - name: Set up OpenSK run: ./setup.sh + - name: Create a long build directory + run: mkdir this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz && mv third_party this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz/ - name: Building board nrf52840dk - run: make -C third_party/tock/boards/nordic/nrf52840dk + run: make -C this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz/third_party/tock/boards/nordic/nrf52840dk - name: Building board nrf52840_dongle - run: make -C third_party/tock/boards/nordic/nrf52840_dongle + run: make -C this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz/third_party/tock/boards/nordic/nrf52840_dongle -- GitLab