Skip to content

Commit

Permalink
Workflows to update mithril and node prerelease versions in preview b…
Browse files Browse the repository at this point in the history
…ranch, and mithril unstable version in sanchonet branch.
  • Loading branch information
TrevorBenson committed Apr 27, 2024
1 parent aba5153 commit dc45c3a
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/mithril-prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Get Mithril pre-release version
on:
workflow_dispatch:
schedule:
- cron: '0 */8 * * *'
jobs:
get-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: preview
- name: Configure Git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
echo "GitHub Actor: ${GITHUB_ACTOR}" >> "$GITHUB_STEP_SUMMARY"
echo "GitHub Email: ${GITHUB_ACTOR}@users.noreply.github.com" >> "$GITHUB_STEP_SUMMARY"
- name: Fetch Mithril release and pre-release versions
run: |
mithril_release="$(curl -s https://api.github.com/repos/input-output-hk/mithril/releases/latest | jq -r '.tag_name')"
mithril_prerelease="$(curl -s https://api.github.com/repos/input-output-hk/mithril/releases | jq -r '.[] | select(.prerelease == true) | select(.tag_name | endswith("-pre")) | .tag_name' | head -n 1)"
if [[ "${mithril_release}-pre" == "${mithril_prerelease}" ]]; then
echo "${mithril_release}" > files/docker/node/release-versions/mithril-prerelease.txt
echo "PRERELEASE_VERSION=${mithril_release}" >> $GITHUB_ENV
echo "Pre-release version: ${mithril_release}" >> $GITHUB_STEP_SUMMARY
echo "Pre-release == Release: True" >> $GITHUB_STEP_SUMMARY
else
echo "${mithril_prerelease}" > files/docker/node/release-versions/mithril-prerelease.txt
echo "PRERELEASE_VERSION=${mithril_prerelease}" >> $GITHUB_ENV
echo "Pre-release version: ${mithril_prerelease}" >> $GITHUB_STEP_SUMMARY
echo "Pre-release == Release: False" >> $GITHUB_STEP_SUMMARY
fi
- name: Check for changes
id: git-check
run: |
export MODIFIED=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
echo "MODIFIED=${MODIFIED}" >> "$GITHUB_OUTPUT"
echo "Repository Modified: ${MODIFIED}" >> "$GITHUB_STEP_SUMMARY"
- name: Commit latest pre-release versions
if: steps.git-check.outputs.MODIFIED == 'true'
run: |
echo "Modified files: $(git diff --name-only $(jq -r '.sha' "$GITHUB_OUTPUT"))" >> "$GITHUB_STEP_SUMMARY"
git add files/docker/node/release-versions/mithril-prerelease.txt
git commit -am "New mithril pre-release versions: pre-release ${PRERELEASE_VERSION}"
git push
40 changes: 40 additions & 0 deletions .github/workflows/mithril-unstable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Get Mithril unstable version
on:
workflow_dispatch:
schedule:
- cron: '0 */8 * * *'
jobs:
get-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: sanchonet
- name: Configure Git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
echo "GitHub Actor: ${GITHUB_ACTOR}" >> "$GITHUB_STEP_SUMMARY"
echo "GitHub Email: ${GITHUB_ACTOR}@users.noreply.github.com" >> "$GITHUB_STEP_SUMMARY"
- name: Fetch Mithril unstable version
run: |
curl -sL https://api.github.com/repos/input-output-hk/mithril/releases | jq -r '.[] | select(.prerelease == true and .tag_name == "unstable") | .tag_name' | head -1 > files/docker/node/release-versions/mithril-unstable.txt
- name: Assign unstable version
run: |
export UNSTABLE_VERSION=$(cat files/docker/node/release-versions/mithril-unstable.txt)
echo "UNSTABLE_VERSION=${UNSTABLE_VERSION}" >> $GITHUB_ENV
echo "Unstable version: ${UNSTABLE_VERSION}" >> $GITHUB_STEP_SUMMARY
- name: Check for changes
id: git-check
run: |
export MODIFIED=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
echo "MODIFIED=${MODIFIED}" >> "$GITHUB_OUTPUT"
echo "Repository Modified: ${MODIFIED}" >> "$GITHUB_STEP_SUMMARY"
- name: Commit latest unstable versions
if: steps.git-check.outputs.MODIFIED == 'true'
run: |
echo "Modified files: $(git diff --name-only $(jq -r '.sha' "$GITHUB_OUTPUT"))" >> "$GITHUB_STEP_SUMMARY"
git add files/docker/node/release-versions/mithril-unstable.txt
git commit -am "New mithril unstable versions: unstable ${UNSTABLE_VERSION}"
git push
38 changes: 38 additions & 0 deletions .github/workflows/node-prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Get Node pre-release version
on:
workflow_dispatch:
schedule:
- cron: '0 0 */2 * *'
jobs:
get-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: preview
- name: Configure Git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
echo "GitHub Actor: ${GITHUB_ACTOR}" >> "$GITHUB_STEP_SUMMARY"
echo "GitHub Email: ${GITHUB_ACTOR}@users.noreply.github.com" >> "$GITHUB_STEP_SUMMARY"
- name: Fetch node pre-release version
run: |
curl -sL https://api.github.com/repos/IntersectMBO/cardano-node/releases | jq -r '.[] | select(.prerelease == true) | .tag_name' | head -1 > files/docker/node/release-versions/cardano-node-prerelease.txt
- name: Assigns pre-release version
run: |
VERSION=$(cat files/docker/node/release-versions/cardano-node-prerelease.txt)
- name: Check for changes
id: git-check
run: |
export MODIFIED=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
echo "MODIFIED=${MODIFIED}" >> "$GITHUB_OUTPUT"
echo "Repository Modified: ${MODIFIED}" >> "$GITHUB_STEP_SUMMARY"
- name: Commit latest pre-release versions
if: steps.git-check.outputs.MODIFIED == 'true'
run: |
echo "Modified files: $(git diff --name-only $(jq -r '.sha' "$GITHUB_OUTPUT"))" >> "$GITHUB_STEP_SUMMARY"
git add files/docker/node/release-versions/cardano-node-prerelease.txt
git commit -am "New mithril pre-release versions: pre-release ${PRERELEASE_VERSION}"
git push

0 comments on commit dc45c3a

Please sign in to comment.