Skip to content

Use RockyLinux 9 for CI by default #385

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 1 commit into from
Apr 5, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/fatimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Build fat image
'on':
workflow_dispatch:
inputs:
use_RL9:
use_RL8:
required: true
description: Include RL9 image build
description: Include RL8 image build
type: boolean
default: false
jobs:
Expand All @@ -16,11 +16,11 @@ jobs:
strategy:
matrix:
os_version: [RL8, RL9]
rl9_selected:
- ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
rl8_selected:
- ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
exclude:
- os_version: RL9
rl9_selected: false
- os_version: RL8
rl8_selected: false
env:
ANSIBLE_FORCE_COLOR: True
OS_CLOUD: openstack
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/stackhpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Test deployment and reimage on OpenStack
on:
workflow_dispatch:
inputs:
use_RL9:
use_RL8:
required: true
description: Include RL9 tests
description: Include RL8 tests
type: boolean
default: false
push:
Expand All @@ -20,14 +20,14 @@ jobs:
strategy:
matrix:
os_version: [RL8, RL9]
rl9_selected:
- ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
rl9_branch:
- ${{ startsWith(github.head_ref, 'rl9') == true }} # only potentially for pull_request, always false on merge
rl8_selected:
- ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
rl8_branch:
- ${{ startsWith(github.head_ref, 'rl8') == true }} # only potentially for pull_request, always false on merge
exclude:
- os_version: RL9
rl9_selected: false
rl9_branch: false
- os_version: RL8
rl8_selected: false
rl8_branch: false
env:
ANSIBLE_FORCE_COLOR: True
OS_CLOUD: openstack
Expand Down