Skip to content

Commit

Permalink
Upgrade CI (31 Jul 2024 17:35:29)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 31, 2024
1 parent 76a3d14 commit 9e18f00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/operator_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ env:
INDEX_PATH_TO_SIGN: "not-defined"
SIGNATURE_ENDPOINT: "https://not-defined"
OPP_REVIEWERS_ENABLED: 0
TMPDIR: "/mnt/tmp"


OPP_ALLOW_FORCE_RELEASE: ${{ github.event.inputs.release }}
Expand All @@ -70,11 +69,6 @@ jobs:
name: "PR-traffic-light"
runs-on: ubuntu-latest
steps:
- name: Set up TMPDIR
run: |
sudo mkdir "${TMPDIR}"
sudo chmod 1777 "${TMPDIR}"
- name: Checkout code
uses: actions/checkout@v3
- id: files
Expand Down Expand Up @@ -232,7 +226,10 @@ jobs:
ANSIBLE_FORCE_COLOR: 1
ANSIBLE_DISPLAY_SKIPPED_HOSTS: 0
ANSIBLE_STDOUT_CALLBACK: "yaml"
TMPDIR: "/mnt/tmp"
run: |
sudo mkdir -p "${TMPDIR}"
sudo chmod 1777 "${TMPDIR}"
OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
echo $OPP_FORCE_OPERATORS
[ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/operator_release_manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ env:
INDEX_PATH_TO_SIGN: "not-defined"
SIGNATURE_ENDPOINT: "https://not-defined"
OPP_REVIEWERS_ENABLED: 0
TMPDIR: "/mnt/tmp"


OPP_ALLOW_FORCE_RELEASE: ${{ github.event.inputs.release }}
Expand All @@ -83,11 +82,6 @@ jobs:
name: "PR-traffic-light"
runs-on: ubuntu-latest
steps:
- name: Set up TMPDIR
run: |
sudo mkdir "${TMPDIR}"
sudo chmod 1777 "${TMPDIR}"
- name: Checkout code
uses: actions/checkout@v3
- id: files
Expand Down Expand Up @@ -239,7 +233,10 @@ jobs:
ANSIBLE_FORCE_COLOR: 1
ANSIBLE_DISPLAY_SKIPPED_HOSTS: 0
ANSIBLE_STDOUT_CALLBACK: "yaml"
TMPDIR: "/mnt/tmp"
run: |
sudo mkdir -p "${TMPDIR}"
sudo chmod 1777 "${TMPDIR}"
OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
echo $OPP_FORCE_OPERATORS
[ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
Expand Down

0 comments on commit 9e18f00

Please sign in to comment.