rebuild #1220
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [pull_request, push, repository_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
board: ['pca10056'] | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
- name: Install ARM GCC | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: '11.2-2022.02' | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Checkout mynewt-newt | |
uses: actions/checkout@v3 | |
with: | |
repository: apache/mynewt-newt | |
path: mynewt-newt | |
- name: Install newt | |
run: | | |
mynewt-newt/build.sh | |
echo "$GITHUB_WORKSPACE/mynewt-newt/newt" >> $GITHUB_PATH | |
mynewt-newt/newt/newt version | |
- name: Build | |
run: | | |
newt upgrade | |
newt build ${{ matrix.board }}-cdc_msc | |
newt build ${{ matrix.board }}-msc_dual_lun | |
newt build ${{ matrix.board }}-blehci |