debian bullseye flow #4
Workflow file for this run
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: debian bullseye flow | |
on: | |
workflow_dispatch: | |
inputs: | |
gcc11: | |
description: 'Use GCC 11' | |
required: false | |
default: false | |
type: boolean | |
workflow_call: | |
inputs: | |
gcc11: | |
description: 'Use GCC 11' | |
required: false | |
default: false | |
type: boolean | |
jobs: | |
bullseye: | |
uses: ./.github/workflows/task-unit-test.yml | |
with: | |
container: debian:bullseye | |
pre-checkout-script: apt-get update && apt-get -y install git | |
bullseye-gcc11: | |
if: ${{ inputs.gcc11 == true }} | |
uses: ./.github/workflows/task-unit-test.yml | |
with: | |
container: gcc:11-bullseye | |
pre-checkout-script: apt-get update && apt-get -y install git | |