From 0fe488962470c7534616c16e55b1836daacfea34 Mon Sep 17 00:00:00 2001 From: Guillaume Endignoux <guillaumee@google.com> Date: Thu, 5 Mar 2020 11:50:26 +0100 Subject: [PATCH] Add GitHub workflow to build the boards. --- .github/workflows/boards_build.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/boards_build.yml diff --git a/.github/workflows/boards_build.yml b/.github/workflows/boards_build.yml new file mode 100644 index 0000000..477657f --- /dev/null +++ b/.github/workflows/boards_build.yml @@ -0,0 +1,30 @@ +--- +name: Build supported boards +on: + push: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + build_boards: + strategy: + matrix: + os: [ubuntu-18.04, macos-10.15] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + target: thumbv7em-none-eabi + - uses: actions/setup-python@v1 + with: + python-version: 3.7 + - name: Install Python dependencies + run: python -m pip install --upgrade pip setuptools wheel + - name: Set up OpenSK + run: ./setup.sh + + - name: Building board nrf52840dk + run: cd third_party/tock/boards/nordic/nrf52840dk && make + - name: Building board nrf52840_dongle + run: cd third_party/tock/boards/nordic/nrf52840_dongle && make -- GitLab