Add reusable workflow to build all apps #15
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 all apps | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build_all_applications: | |
name: Build all the applications on all the devices | |
uses: ./.github/workflows/reusable_build_several.yml | |
with: | |
sdk: all | |
devices: '["nanox"]' | |
build_all_applications_on_latest: | |
name: Build all the applications on all the devices | |
uses: ./.github/workflows/reusable_build_several.yml | |
with: | |
sdk: all | |
sdk_ref: origin/master | |
devices: '["flex", "stax"]' |