Set BLE TX power. Temporarily removed factory reset make targets #153
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
# Build the project using the Bitcraze builder docker image | |
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
# Weekly build to make sure dependencies are OK | |
- cron: '30 15 * * 0' | |
jobs: | |
read_targets_from_file: | |
uses: bitcraze/workflows/.github/workflows/read_build_targets.yml@dfbc8c23a8ec6d4925d01deb20277839ad1235f1 | |
with: | |
target_file: './build_targets.json' | |
build: | |
needs: read_targets_from_file | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
${{fromJson(needs.read_targets_from_file.outputs.platforms)}} | |
env: | |
PLATFORM: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check and build | |
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build PLATFORM=$PLATFORM | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.platform }}-${{ github.sha }} | |
path: _build/${{ matrix.platform }}_nrf.bin |