|
| 1 | +# |
| 2 | +# Copyright (c) 2021, The OpenThread Authors. |
| 3 | +# All rights reserved. |
| 4 | +# |
| 5 | +# Redistribution and use in source and binary forms, with or without |
| 6 | +# modification, are permitted provided that the following conditions are met: |
| 7 | +# 1. Redistributions of source code must retain the above copyright |
| 8 | +# notice, this list of conditions and the following disclaimer. |
| 9 | +# 2. Redistributions in binary form must reproduce the above copyright |
| 10 | +# notice, this list of conditions and the following disclaimer in the |
| 11 | +# documentation and/or other materials provided with the distribution. |
| 12 | +# 3. Neither the name of the copyright holder nor the |
| 13 | +# names of its contributors may be used to endorse or promote products |
| 14 | +# derived from this software without specific prior written permission. |
| 15 | +# |
| 16 | +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 17 | +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 18 | +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 19 | +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 20 | +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 21 | +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 22 | +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 23 | +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 24 | +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 25 | +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 26 | +# POSSIBILITY OF SUCH DAMAGE. |
| 27 | +# |
| 28 | + |
| 29 | +name: Build |
| 30 | + |
| 31 | +on: [push, pull_request] |
| 32 | + |
| 33 | +jobs: |
| 34 | + |
| 35 | + cancel-previous-runs: |
| 36 | + runs-on: ubuntu-20.04 |
| 37 | + steps: |
| 38 | + - uses: rokroskar/workflow-run-cleanup-action@master |
| 39 | + env: |
| 40 | + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
| 41 | + if: "github.ref != 'refs/heads/main'" |
| 42 | + |
| 43 | + pretty: |
| 44 | + runs-on: ubuntu-20.04 |
| 45 | + steps: |
| 46 | + - uses: actions/checkout@v2 |
| 47 | + with: |
| 48 | + submodules: true |
| 49 | + - name: Bootstrap |
| 50 | + run: | |
| 51 | + sudo rm /etc/apt/sources.list.d/* && sudo apt-get update |
| 52 | + sudo apt-get --no-install-recommends install -y clang-format-9 shellcheck |
| 53 | + python3 -m pip install yapf==0.29.0 |
| 54 | + sudo snap install shfmt |
| 55 | + - name: Check |
| 56 | + run: | |
| 57 | + script/make-pretty check |
| 58 | +
|
| 59 | + gcc-arm-none-eabi: |
| 60 | + name: gcc-arm-none-eabi-${{ matrix.gcc_ver }} |
| 61 | + runs-on: ubuntu-18.04 |
| 62 | + strategy: |
| 63 | + matrix: |
| 64 | + include: |
| 65 | + - gcc_ver: 4 |
| 66 | + gcc_download_url: https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q3-update/+download/gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2 |
| 67 | + gcc_extract_dir: gcc-arm-none-eabi-4_9-2015q3 |
| 68 | + - gcc_ver: 5 |
| 69 | + gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/5_4-2016q3/gcc-arm-none-eabi-5_4-2016q3-20160926-linux.tar.bz2 |
| 70 | + gcc_extract_dir: gcc-arm-none-eabi-5_4-2016q3 |
| 71 | + - gcc_ver: 6 |
| 72 | + gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2 |
| 73 | + gcc_extract_dir: gcc-arm-none-eabi-6-2017-q2-update |
| 74 | + - gcc_ver: 7 |
| 75 | + gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2 |
| 76 | + gcc_extract_dir: gcc-arm-none-eabi-7-2018-q2-update |
| 77 | + - gcc_ver: 9 |
| 78 | + gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 |
| 79 | + gcc_extract_dir: gcc-arm-none-eabi-9-2019-q4-major |
| 80 | + steps: |
| 81 | + - uses: actions/checkout@v2 |
| 82 | + with: |
| 83 | + submodules: true |
| 84 | + - name: Bootstrap |
| 85 | + run: | |
| 86 | + cd /tmp |
| 87 | + sudo rm /etc/apt/sources.list.d/* && sudo apt-get update |
| 88 | + sudo apt-get --no-install-recommends install -y lib32z1 ninja-build |
| 89 | + wget ${{ matrix.gcc_download_url }} -O gcc-arm.tar.bz2 |
| 90 | + tar xjf gcc-arm.tar.bz2 |
| 91 | + # use the minimal required cmake version |
| 92 | + sudo pip3 install --system -U cmake==3.10.3 |
| 93 | + cmake --version | grep 3.10.3 |
| 94 | + - name: Build |
| 95 | + run: | |
| 96 | + export PATH=/tmp/${{ matrix.gcc_extract_dir }}/bin:$PATH |
| 97 | + script/test qpg6095 |
| 98 | + script/test qpg6100 |
| 99 | +
|
| 100 | + gcc-arm-none-linux-gnueabihf: |
| 101 | + name: gcc-arm-none-linux-gnueabihf-${{ matrix.gcc_ver }} |
| 102 | + runs-on: ubuntu-18.04 |
| 103 | + strategy: |
| 104 | + matrix: |
| 105 | + include: |
| 106 | + - gcc_ver: 8 |
| 107 | + gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-a/8.3-2019.03/binrel/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf.tar.xz |
| 108 | + gcc_extract_dir: gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf |
| 109 | + steps: |
| 110 | + - uses: actions/checkout@v2 |
| 111 | + with: |
| 112 | + submodules: true |
| 113 | + - name: Bootstrap |
| 114 | + run: | |
| 115 | + cd /tmp |
| 116 | + sudo rm /etc/apt/sources.list.d/* && sudo apt-get update |
| 117 | + sudo apt-get --no-install-recommends install -y lib32z1 ninja-build |
| 118 | + wget ${{ matrix.gcc_download_url }} -O gcc-arm.tar.xz |
| 119 | + tar xf gcc-arm.tar.xz |
| 120 | + # use the minimal required cmake version |
| 121 | + sudo pip3 install --system -U cmake==3.10.3 |
| 122 | + cmake --version | grep 3.10.3 |
| 123 | + - name: Build |
| 124 | + run: | |
| 125 | + export PATH=/tmp/${{ matrix.gcc_extract_dir }}/bin:$PATH |
| 126 | + script/test gp712 |
| 127 | + script/test qpg7015m |
0 commit comments