[RSDK-10228] New canon image and changes to take advantage of it #2617
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: License Finder | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
branches: ['main'] | |
push: | |
jobs: | |
license_finder: | |
name: Audit 3rd-Party Licenses | |
runs-on: ubuntu-latest | |
# by default github use sh as shell | |
defaults: | |
run: | |
# will use bash to run each command, bash will source /etc/profile which will give us the environment to build for esp32 | |
shell: bash --norc -leo pipefail {0} | |
container: | |
image: ghcr.io/viamrobotics/micro-rdk-dev-env:1.83.0-amd64 | |
timeout-minutes: 10 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Run license finder | |
run: license_finder |