feat: Add libasound2-dev
to CoDiOS simulator
#145
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: All Containers CI builder | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
# Ensures that only one deploy task per branch/environment will run at a time. | |
concurrency: | |
group: gh-ref-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
packages: write | |
jobs: | |
build-planet-container-images: | |
if: ${{ github.repository_owner == 'planet-community' }} # To be changed to PC. | |
uses: ./.github/workflows/build-and-push-planet-containers.yml | |
secrets: inherit | |
build-cosmo-codios-codid-cargo-container-image: | |
if: ${{ github.repository_owner == 'planet-community' }} # To be changed to PC. | |
uses: ./.github/workflows/build-and-push-cosmo-codios-codid-cargo.yml | |
secrets: inherit | |
build-cosmo-codios-codios-cargo-container-image: | |
if: ${{ github.repository_owner == 'planet-community' }} # To be changed to PC. | |
uses: ./.github/workflows/build-and-push-cosmo-codios-codios-cargo.yml | |
secrets: inherit |