Skip to content

Commit 69b975c

Browse files
Default to building ConQuest python on Rocky (CQ-1519)
1 parent 14d14a5 commit 69b975c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/build-conquest-python.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@ jobs:
3636
- name: Set output
3737
id: set_output
3838
run: |
39-
if [[ "${{ inputs.platforms }}" == "rocky8" ]]; then
40-
echo runson=ubuntu-latest >> $GITHUB_OUTPUT
41-
echo container=ccdcrepository.azurecr.io/conan/rocky8-gcc10:latest >> $GITHUB_OUTPUT
42-
echo python=python3 >> $GITHUB_OUTPUT
43-
elif [[ "${{ inputs.platforms }}" == "ubuntu" ]]; then
39+
if [[ "${{ inputs.platforms }}" == "ubuntu" ]]; then
4440
echo runson=ubuntu-latest >> $GITHUB_OUTPUT
4541
echo python=python3 >> $GITHUB_OUTPUT
4642
elif [[ "${{ inputs.platforms }}" == "macos" ]]; then
@@ -49,6 +45,11 @@ jobs:
4945
elif [[ "${{ inputs.platforms }}" == "windows" ]]; then
5046
echo runson=windows-2019 >> $GITHUB_OUTPUT
5147
echo python=python >> $GITHUB_OUTPUT
48+
else
49+
# default to Rocky
50+
echo runson=ubuntu-latest >> $GITHUB_OUTPUT
51+
echo container=ccdcrepository.azurecr.io/conan/rocky8-gcc10:latest >> $GITHUB_OUTPUT
52+
echo python=python3 >> $GITHUB_OUTPUT
5253
fi
5354
5455
build-upload:

0 commit comments

Comments
 (0)