ZXCron: [Platform] Release JRS Regression #629
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Copyright (C) 2022-2024 Hedera Hashgraph, LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
## | |
name: "ZXCron: [Platform] Release JRS Regression" | |
on: | |
schedule: | |
- cron: '0 9 * * *' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
env: | |
BRANCH_LIST_FILE: "${{ github.workspace }}/branches.lst" | |
jobs: | |
cron: | |
name: Cron / Launch Workflows | |
runs-on: network-node-linux-small-scheduler | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Identify Release Branches | |
run: | | |
echo "::group::Ensure Branch List File Exists" | |
touch "${BRANCH_LIST_FILE}" | |
echo "::endgroup::" | |
BRANCH_LIST="$(git branch --list --remotes --format='%(refname:strip=3)' | cat)" | |
while IFS= read -r line; do | |
[[ "${line}" =~ ^release/([0-9]+).([0-9]+) ]] || continue | |
major="${BASH_REMATCH[1]}" | |
minor="${BASH_REMATCH[2]}" | |
if [[ "${major}" -eq 0 && "${minor}" -lt 55 ]]; then | |
continue | |
fi | |
echo "::group::Identified Branch: ${line}" | |
echo "${line}" | tee -a "${BRANCH_LIST_FILE}" | |
echo "::endgroup::" | |
done <<< "${BRANCH_LIST}" | |
- name: Show Branch List | |
run: cat "${BRANCH_LIST_FILE}" | |
- name: Install Github CLI | |
env: | |
GITHUB_TOKEN: ${{ secrets.PLATFORM_access-token }} | |
run: | | |
curl -O -L -s https://github.com/cli/cli/releases/download/v2.12.1/gh_2.12.1_linux_amd64.deb | |
sudo apt install -y ./gh_2.12.1_linux_amd64.deb | |
rm -rf gh_2.12.1_linux_amd64.deb | |
- name: Launch JRS Jobs | |
env: | |
GITHUB_TOKEN: ${{ secrets.PLATFORM_GH_ACCESS_TOKEN }} | |
run: | | |
FIRST_RUN_STARTED="false" | |
while IFS= read -r line; do | |
[[ -n "${line}" ]] || continue | |
if [[ "${FIRST_RUN_STARTED}" = true ]]; then | |
sleep 30m | |
else | |
FIRST_RUN_STARTED="true" | |
fi | |
echo "::group::Processing Branch: ${line}" | |
printf "======== Beginning Github Actions Workflow Initiation ========\n" | |
gh workflow run platform-flow-jrs-daily-regression.yaml \ | |
--ref "${line}" \ | |
-R "${{ github.repository }}" \ | |
-f "branch-name=${line}" \ | |
-f "ref=${line}" 2>&1 | cat | |
printf "======== Finished Github Actions Workflow Initiation ========\n" | |
echo "::endgroup::" | |
done < <(cat "${BRANCH_LIST_FILE}") |