Skip to content

add to gcc11-bullseye to workflows - [MOD-9529] #680

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion .github/workflows/debian11.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,32 @@
name: debian bullseye flow

on: [workflow_dispatch, workflow_call]
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:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a comment to the PR with a link to a successful run of this new job

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

2 changes: 2 additions & 0 deletions .github/workflows/event-merge-to-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
# container: ubuntu:bionic
bullseye:
uses: ./.github/workflows/debian11.yml
with:
gcc11: false
# amazonlinux2:
# needs: [check-if-docs-only]
# if: ${{ needs.check-if-docs-only.outputs.only-docs-changed == 'false' }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/event-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
# container: ubuntu:bionic
bullseye:
uses: ./.github/workflows/debian11.yml
with:
gcc11: true
# amazonlinux2:
# needs: [check-if-docs-only]
# if: ${{ needs.check-if-docs-only.outputs.only-docs-changed == 'false' }}
Expand Down
Loading