2024-05-04 07:46:01 +00:00
name : "Build cooker"
2023-12-20 08:07:49 +00:00
on :
push :
branches :
- cooker*
- feat*
paths :
- '.github/workflows/**'
- 'automation_tools/**'
2024-08-05 01:45:21 +00:00
- 'config/**'
- 'config/es-de/**'
2023-12-20 08:07:49 +00:00
- 'functions/**'
- 'rd-submodules/**'
- '*.sh'
- 'net.retrodeck.retrodeck.yml'
- 'net.retrodeck.retrodeck.appdata.xml'
2024-08-18 00:31:03 +00:00
pull_request_target :
2023-12-20 08:07:49 +00:00
branches :
- cooker*
2024-05-04 07:46:01 +00:00
# Italy (CET): 11:00 PM
# Japan (JST): 7:00 AM
# schedule:
# - cron: '0 22 * * *'
2023-12-20 08:07:49 +00:00
workflow_dispatch :
2024-08-16 00:00:17 +00:00
permissions :
contents : write
2023-12-20 08:07:49 +00:00
jobs :
Building_RetroDECK :
2024-08-01 16:03:37 +00:00
runs-on : retrodeck
2024-08-18 00:31:03 +00:00
steps :
2023-12-20 08:07:49 +00:00
# Circumventing this bug: https://github.com/flatpak/flatpak-builder/issues/317
- name : Remove stuck mounts
run : sudo umount -f /home/ubuntu/actions-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/*
continue-on-error : true
2024-08-16 12:33:30 +00:00
- name : Generate a token for Rekku
2024-08-21 04:49:49 +00:00
if : github.repository_owner == 'RetroDECK'
2024-08-16 12:33:30 +00:00
id : generate-rekku-token
uses : actions/create-github-app-token@v1
with :
app-id : ${{ vars.REKKU_APP_ID }}
private-key : ${{ secrets.REKKU_PRIVATE_KEY }}
2024-08-20 01:46:42 +00:00
repositories : "RetroDECK,Cooker"
owner : "RetroDECK"
2023-12-20 08:07:49 +00:00
- name : Clone RetroDECK repo
2024-08-05 01:45:21 +00:00
uses : actions/checkout@v4
2023-12-20 08:07:49 +00:00
with :
2024-08-21 04:49:49 +00:00
ref : ${{ github.event.pull_request.head.ref || github.ref }} # Use the branch or commit reference from the pull request if available; otherwise, fall back to the reference from the event that triggered the workflow.
repository : ${{ github.event.pull_request.head.repo.full_name || github.repository }} # Use the repository name from the pull request if available; otherwise, use the repository name from the event that triggered the workflow.
2023-12-20 08:07:49 +00:00
submodules : 'true'
- name : "Install dependencies"
run : "automation_tools/install_dependencies.sh"
- name : Generate cooker build ID
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh"
2024-02-23 08:43:13 +00:00
- name : Get branch name
id : branch_name
run : echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
# if it's a feature branch it will not marked as "latest" cooker version
- name : "Set makeLatest (cooker only)"
run : |
if [[ "$BRANCH_NAME" == 'feat/'* || "$BRANCH_NAME" == 'refs/'* ]]; then
echo "MAKE_LATEST=false" >> $GITHUB_ENV
else
echo "MAKE_LATEST=true" >> $GITHUB_ENV
fi
2024-08-21 04:49:49 +00:00
# Generate version tag based on the branch name: if the branch is coming from a PR the tag should be manually built
2024-02-23 08:43:13 +00:00
- name : "Generate version tag"
run : |
2024-08-21 04:49:49 +00:00
# Source version extractor script and get manifest version
2024-07-18 04:32:16 +00:00
source automation_tools/version_extractor.sh
2024-07-18 04:35:01 +00:00
MANIFEST_VERSION="$(fetch_manifest_version)"
2024-08-21 04:49:49 +00:00
# Set manifest version to environment variable
2024-07-18 04:36:52 +00:00
echo "MANIFEST_VERSION=$MANIFEST_VERSION" >> $GITHUB_ENV
2024-08-21 04:49:49 +00:00
# Determine tag based on branch type
2024-08-22 06:59:20 +00:00
if [[ "$BRANCH_NAME" == refs/pull/* ]]; then
pr_number=$(echo "$GITHUB_REF" | awk -F'/' '{print $3}')
2024-08-21 04:49:49 +00:00
source_branch=$(curl -s "https://api.github.com/repos/RetroDECK/RetroDECK/pulls/$pr_number" | jq -r '.head.ref' | tr '/' '-')
TAG="PR-$pr_number-$source_branch-${{ env.buildid }}"
2024-02-23 08:43:13 +00:00
else
2024-07-18 04:42:57 +00:00
TAG="$MANIFEST_VERSION-${{ env.buildid }}"
2024-02-23 08:43:13 +00:00
fi
2024-08-21 04:49:49 +00:00
# Set tag to environment variable
echo "TAG=$TAG" >> $GITHUB_ENV
# Output debug information
2024-07-18 04:40:36 +00:00
echo "MANIFEST_VERSION: $MANIFEST_VERSION"
echo "Version TAG: $TAG"
2024-02-23 08:43:13 +00:00
2023-12-20 08:07:49 +00:00
# backing up manifest in case download fails and hashes must be recalculated
- name : Manifest backup
run : "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
- name : Run pre-build automation tasks
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
- name : "Adding flatpak portal for automated updates (cooker only)"
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh"
- name : "Updating release notes in appdata"
run : "automation_tools/appdata_management.sh"
- name : "[DEBUG] Outputting manifest"
run : cat net.retrodeck.retrodeck.yml
- name : "Build flatpak: download only"
id : "flatpak-download"
2024-05-04 07:46:01 +00:00
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
2023-12-20 08:07:49 +00:00
continue-on-error : true
# Sometimes flatpak download fails, in this case it tries a second time
- name : "Build flatpak: download only (retry)"
if : steps.flatpak-download.outcome == 'failure'
run : |
echo "Download failed, maybe some hash changed since the build start."
echo "Recalculating hashes and retrying download..."
rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml"
cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml"
"${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
2024-05-04 07:46:01 +00:00
"${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
2023-12-20 08:07:49 +00:00
- name : Build flatpak
2024-05-04 07:46:01 +00:00
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh"
2023-12-20 08:07:49 +00:00
- name : Create Bundle
2024-05-04 07:46:01 +00:00
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh"
2023-12-20 08:07:49 +00:00
- name : Get commits since last release
run : |
# Get the latest release tag
LATEST_TAG=$(git describe --tags --abbrev=0)
# Get all commits since the latest release tag
COMMITS=$(git log $LATEST_TAG..HEAD --pretty=format:"- %s")
# Set the output variable
2024-08-21 04:49:49 +00:00
echo "COMMITS=$COMMITS" >> $GITHUB_ENV
2023-12-20 08:07:49 +00:00
continue-on-error : true
- name : Publish the flatpak in a new cooker release
uses : ncipollo/release-action@v1
with :
2024-02-21 09:50:28 +00:00
tag : "${{env.TAG}}"
2023-12-20 08:07:49 +00:00
body : |
# Release Notes (Cooker)
This is a cooker snapshot based on the commit : ${{ github.event.repository.full_name }}@${{github.sha}}.
2024-08-01 15:57:19 +00:00
On branch [${{env.BRANCH_NAME}}](https://github.com/RetroDECK/RetroDECK/tree/${{env.BRANCH_NAME}}).
2023-12-20 08:07:49 +00:00
2024-08-21 04:49:49 +00:00
## Commits since last cooker build
${{ env.COMMITS }}
2023-12-20 08:07:49 +00:00
2024-05-04 07:46:01 +00:00
For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server.
2023-12-20 08:07:49 +00:00
Cooker channel is provided for the community to test fixes and explore new functionality.
Please DO NOT open issues or ask support on this build.
2024-05-04 07:46:01 +00:00
artifacts : "RetroDECK-cooker.flatpak,RetroDECK-cooker.flatpak.sha,RetroDECK-Artifact.tar.gz"
2023-12-20 08:07:49 +00:00
allowUpdates : true
makeLatest : ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build
2024-08-19 00:56:54 +00:00
token : ${{ steps.generate-rekku-token.outputs.token }}
2024-08-21 04:49:49 +00:00
repo : ${{ github.repository_owner == 'RetroDECK' && 'Cooker' || github.repository }} # If the repo owner is RetroDECK, publish to Cooker, otherwise publish to the current fork repo
2023-12-20 08:07:49 +00:00
continue-on-error : true
2024-07-17 12:18:19 +00:00
- name : Rewrite Tag
2024-08-21 04:49:49 +00:00
if : github.repository_owner == 'RetroDECK'
2024-07-17 12:18:19 +00:00
run : |
2024-07-18 04:23:28 +00:00
git submodule deinit -f --all
2024-07-17 12:18:19 +00:00
git fetch --tags
2024-08-16 12:33:30 +00:00
git config --global user.name "Rekku"
git config --global user.email "rekku@retrodeck.net"
2024-07-17 12:18:19 +00:00
if git rev-parse --verify "${{ env.TAG }}" >/dev/null 2>&1; then # if the tag exists
git tag -d "${{ env.TAG }}" # remove it from local repo
git push --delete origin "${{ env.TAG }}" # and from remote
fi
git tag "${{ env.TAG }}" # Create the tag locally
git push origin "${{ env.TAG }}" # Push the new tag in the remote repo
2024-08-10 11:12:01 +00:00
env :
2024-08-19 00:56:54 +00:00
GITHUB_TOKEN : ${{ steps.generate-rekku-token.outputs.token }}
2024-07-17 12:18:19 +00:00
2023-12-20 08:07:49 +00:00
# In case it cannot publish the release at least it's providing the flatpak file for creating a manual release
- name : Upload RetroDECK-cooker.flatpak
2024-08-05 01:45:21 +00:00
uses : actions/upload-artifact@v4
2023-12-20 08:07:49 +00:00
with :
name : retrodeck-flatpak
path : RetroDECK-cooker.flatpak
continue-on-error : true
2024-05-04 07:46:01 +00:00
2024-08-21 04:57:38 +00:00
# We never needed this in cooker
# - name: Create Artifact for flathub
# if: github.repository_owner == 'RetroDECK'
# run: |
# tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker .
# hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz))
# echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.sha
# mv -f RetroDECK-Artifact-cooker.* ${{ secrets.ARTIFACT_REPO }}
# continue-on-error: true
2024-08-05 01:45:21 +00:00
2024-05-04 07:46:01 +00:00
# - name: Upload RetroDECK-cooker.flatpak to Gitea Release
2024-08-21 04:49:49 +00:00
# if: github.repository_owner == 'RetroDECK'
2024-05-04 07:46:01 +00:00
# run: |
# # Set variables for Gitea host, organization, repository, access token, and release details
# GITEA_HOST="repo.retrodeck.net"
2024-05-24 15:19:04 +00:00
# UPLOAD_HOST="upload.retrodeck.net"
2024-05-04 07:46:01 +00:00
# ORGANIZATION="RetroDECK"
# REPO="RetroDECK-cooker"
# GITEA_TOKEN="${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}"
# RELEASE_NAME="RetroDECK ${{env.TAG}}"
# TAG="${{env.TAG}}"
# RELEASE_BODY="# Release Notes (Cooker)
# This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
# On branch [${{env.BRANCH_NAME}}](https://repo.retrodeck.net/RetroDECK/RetroDECK/src/branch/${{env.BRANCH_NAME}}).
# ## Commits since last release
# ${{ steps.commits.outputs.commits }}
# For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server.
# Cooker channel is provided for the community to test fixes and explore new functionality.
# Please DO NOT open issues or ask support on this build."
# # Create a release using curl and capture the release ID
# release_response=$(curl -X POST \
# -H "Authorization: token ${GITEA_TOKEN}" \
# -H "Content-Type: application/json" \
# -d "{\"tag_name\":\"$TAG\",\"name\":\"$RELEASE_NAME\",\"body\":\"$RELEASE_BODY\"}" \
# "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases")
# # Extract the release ID from the response
# release_id=$(echo $release_response | jq -r '.id')
# # Upload artifacts
# curl -X POST \
# -H "Authorization: token ${GITEA_TOKEN}" \
2024-05-24 15:19:04 +00:00
# -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
2024-05-04 07:46:01 +00:00
# -H "Content-Type: multipart/form-data" \
# -F "attachment=@RetroDECK-cooker.flatpak" \
2024-05-24 15:19:04 +00:00
# "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak"
2024-05-04 07:46:01 +00:00
# # Upload artifacts sha
# curl -X POST \
# -H "Authorization: token ${GITEA_TOKEN}" \
2024-05-24 15:19:04 +00:00
# -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
2024-05-04 07:46:01 +00:00
# -H "Content-Type: multipart/form-data" \
# -F "attachment=@RetroDECK-cooker.flatpak.sha" \
2024-05-24 15:19:04 +00:00
# "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak.sha"
2024-05-04 07:46:01 +00:00
# curl -X POST \
# -H "Authorization: token ${GITEA_TOKEN}" \
2024-05-24 15:19:04 +00:00
# -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \
2024-05-04 07:46:01 +00:00
# -H "Content-Type: multipart/form-data" \
# -F "attachment=@RetroDECK-Artifact.tar.gz" \
2024-05-24 15:19:04 +00:00
# "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-Artifact.tar.gz"