Add call reusable modules CI workflow #17
This file contains hidden or 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: Module CI | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| opendaq-ref: | |
| description: "openDAQ SDK commit, branch or tag" | |
| required: false | |
| default: "" | |
| pull_request: | |
| jobs: | |
| call-opendaq-modules-ci: | |
| name: Call module CI | |
| uses: openDAQ/actions/.github/workflows/reusable-module-ci.yml@jira/TBBAS-3013-resusable-workflow-ci-module | |
| with: | |
| opendaq-ref: ${{ github.event.inputs.opendaq-ref || '' }} | |
| packages: > | |
| [ | |
| { | |
| "jobs": ["ubuntu-*"], | |
| "apt-install": ["libpcap-dev"] | |
| } | |
| ] |