Merge pull request #107 from PelionIoT/update-client-4.13.2 #73
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: production build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: mbed-edge-test-build-${{ github.event.pull_request.head.label || github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: [ "self-hosted", "edge-builder" ] | |
env: | |
SCRIPTS_INTERNAL_DIR: scripts-internal | |
EDGE_CONFIGS_DIR: scripts-internal/edge/edge-config/build-mbed-edge-devmode-test | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout repo | |
with: | |
submodules: recursive | |
- name: Check out scripts-internal repository code | |
uses: actions/checkout@v4 | |
with: | |
repository: PelionIoT/scripts-internal | |
token: ${{ secrets.ACCESS_TOKEN }} | |
path: ${{ env.SCRIPTS_INTERNAL_DIR }} | |
- name: Build devmode-test | |
uses: ./.github/actions/build-mbed-edge | |
with: | |
configfiles: ${{ env.EDGE_CONFIGS_DIR }} |