First Try Adding TTN Generic Node Sensor Edition #72
Workflow file for this run
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: ACI | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
CLI1: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: build CL1 | |
uses: addnab/docker-run-action@v3 | |
with: | |
options: -v ${{ github.workspace }}:/stm32customtargets -w=/stm32customtargets | |
image: ghcr.io/armmbed/mbed-os-env:latest | |
shell: bash | |
run: | | |
set -x | |
pip3 list | |
git clone https://github.com/ARMmbed/mbed-os.git | |
git config --global --add safe.directory /stm32customtargets | |
python3 aci_build.py | |
CLI2: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: build CL2 | |
uses: addnab/docker-run-action@v3 | |
with: | |
options: -v ${{ github.workspace }}:/stm32customtargets -w=/stm32customtargets | |
image: ghcr.io/armmbed/mbed-os-env:latest | |
shell: bash | |
run: | | |
set -x | |
pip3 list | |
git clone https://github.com/ARMmbed/mbed-os.git | |
git config --global --add safe.directory /stm32customtargets | |
python3 aci_build.py --cli2 | |
PIN_STANDARD: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: aci_pinvalidate.py | |
uses: addnab/docker-run-action@v3 | |
with: | |
options: -v ${{ github.workspace }}:/stm32customtargets -w=/stm32customtargets | |
image: ghcr.io/armmbed/mbed-os-env:latest | |
shell: bash | |
run: | | |
set -x | |
pip3 list | |
git config --global --add safe.directory /stm32customtargets | |
python3 aci_build.py --pin |