Skip to content
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

add rocky9 #8

Merged
merged 3 commits into from
Oct 25, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/common-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# if: ${{ inputs.deploy }}
run: ./zip.sh
- name: Upload artifact
if: ${{ inputs.deploy }}
# if: ${{ inputs.deploy }}
uses: actions/upload-artifact@v3
with:
name: RedisStackStub
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/common-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,16 @@ jobs:
- os: "amazonlinux:2"
osnick: "amazonlinux"
- os: "rockylinux:8"
osnick: "rockylinux"
osnick: "rockylinux8"
- os: "rockylinux:9"
osnick: "rockylinux9"
secrets: inherit
uses: ./.github/workflows/common-container.yml
with:
container: ${{ matrix.os }}
os-nickname: ${{ matrix.osnick }}
deploy: ${{ inputs.deploy }}
dependencies_command: 'yum install make gcc tar gzip curl python3 python3-devel zip -y'
dependencies_command: 'yum install make gcc tar gzip python3 python3-devel zip -y'

yum-flavors-arm:
strategy:
Expand All @@ -65,7 +67,7 @@ jobs:
- os: "amazonlinux:2"
osnick: "amazonlinux"
- os: "rockylinux:8"
osnick: "rockylinux"
osnick: "rockylinux8"
secrets: inherit
uses: ./.github/workflows/self-hosted-arm.yml
with:
Expand Down
1 change: 1 addition & 0 deletions zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ then
esac
else
declare -A LINUX_OSNICKS=(
["rocky_linux9.2"]="rhel9"
["rocky_linux8.8"]="rhel8"
["centos_linux7"]="rhel7"
["ubuntu18.04"]="ubuntu18.04"
Expand Down
Loading