2024-05-04 07:46:01 +00:00
|
|
|
name: "Build cooker"
|
2023-12-20 08:07:49 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-08-03 14:20:51 +00:00
|
|
|
- cooker*
|
|
|
|
- feat*
|
2023-12-20 08:07:49 +00:00
|
|
|
paths:
|
2024-08-03 14:20:51 +00:00
|
|
|
- '.github/workflows/**'
|
|
|
|
- 'automation_tools/**'
|
|
|
|
- 'config/**'
|
|
|
|
- 'config/es-de/**'
|
|
|
|
- 'functions/**'
|
|
|
|
- 'rd-submodules/**'
|
|
|
|
- '*.sh'
|
|
|
|
- 'net.retrodeck.retrodeck.yml'
|
|
|
|
- 'net.retrodeck.retrodeck.appdata.xml'
|
|
|
|
pull_request:
|
2023-12-20 08:07:49 +00:00
|
|
|
branches:
|
2024-08-03 14:20:51 +00:00
|
|
|
- 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:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2024-08-03 14:20:51 +00:00
|
|
|
Preparing_Build_Environment:
|
2024-08-01 16:03:37 +00:00
|
|
|
runs-on: retrodeck
|
2024-08-03 14:20:51 +00:00
|
|
|
outputs:
|
|
|
|
branch_name: ${{ steps.get_branch_name.outputs.branch_name }}
|
|
|
|
manifest_version: ${{ steps.generate_version_tag.outputs.manifest_version }}
|
|
|
|
tag: ${{ steps.generate_version_tag.outputs.tag }}
|
|
|
|
make_latest: ${{ steps.set_make_latest.outputs.make_latest }}
|
2023-12-20 08:07:49 +00:00
|
|
|
steps:
|
|
|
|
- name: Remove stuck mounts
|
|
|
|
run: sudo umount -f /home/ubuntu/actions-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/*
|
|
|
|
continue-on-error: true
|
2024-08-03 14:20:51 +00:00
|
|
|
|
2023-12-20 08:07:49 +00:00
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
|
|
|
- name: "Install dependencies"
|
2024-08-03 14:20:51 +00:00
|
|
|
run: "automation_tools/install_dependencies.sh"
|
2023-12-20 08:07:49 +00:00
|
|
|
|
|
|
|
- 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
|
2024-08-03 14:20:51 +00:00
|
|
|
id: get_branch_name
|
|
|
|
run: |
|
|
|
|
echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
|
|
|
|
echo "::set-output name=branch_name::$BRANCH_NAME"
|
2024-02-23 08:43:13 +00:00
|
|
|
|
|
|
|
- name: "Set makeLatest (cooker only)"
|
2024-08-03 14:20:51 +00:00
|
|
|
id: set_make_latest
|
2024-02-23 08:43:13 +00:00
|
|
|
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-03 14:20:51 +00:00
|
|
|
echo "::set-output name=make_latest::$MAKE_LATEST"
|
2024-02-23 08:43:13 +00:00
|
|
|
|
|
|
|
- name: "Generate version tag"
|
2024-08-03 14:20:51 +00:00
|
|
|
id: generate_version_tag
|
2024-02-23 08:43:13 +00:00
|
|
|
run: |
|
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-07-18 04:36:52 +00:00
|
|
|
echo "MANIFEST_VERSION=$MANIFEST_VERSION" >> $GITHUB_ENV
|
2024-08-03 14:20:51 +00:00
|
|
|
echo "::set-output name=manifest_version::$MANIFEST_VERSION"
|
2024-02-23 08:43:13 +00:00
|
|
|
if [[ "$BRANCH_NAME" == 'refs/'* ]]; then
|
|
|
|
pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}')
|
2024-08-01 15:57:19 +00:00
|
|
|
source_branch=$(curl -s "https://api.github.com/repos/RetroDECK/RetroDECK/pulls/$pr_number" | jq -r '.head.ref')
|
2024-02-23 08:43:13 +00:00
|
|
|
source_branch=${source_branch//\//-}
|
|
|
|
echo "[DEBUG] source branch is: $source_branch"
|
2024-08-03 14:20:51 +00:00
|
|
|
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-03 14:20:51 +00:00
|
|
|
echo "TAG=$TAG" >> $GITHUB_ENV
|
|
|
|
echo "::set-output name=tag::$TAG"
|
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
|
|
|
- name: Manifest backup
|
|
|
|
run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
|
|
|
|
|
|
|
|
- name: Run pre-build automation tasks
|
2024-08-03 14:20:51 +00:00
|
|
|
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
|
2023-12-20 08:07:49 +00:00
|
|
|
|
|
|
|
- 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
|
|
|
|
|
2024-08-03 14:20:51 +00:00
|
|
|
Flatpak_Download_Only:
|
|
|
|
runs-on: retrodeck
|
|
|
|
needs: Preparing_Build_Environment
|
|
|
|
steps:
|
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
|
|
|
- name: Build flatpak: download only
|
2023-12-20 08:07:49 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
- 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
|
|
|
|
2024-08-03 14:20:51 +00:00
|
|
|
Create_Flatpak:
|
|
|
|
runs-on: retrodeck
|
|
|
|
needs: Flatpak_Download_Only
|
|
|
|
steps:
|
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
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
|
|
|
|
2024-08-03 14:20:51 +00:00
|
|
|
Creating_Release:
|
|
|
|
runs-on: retrodeck
|
|
|
|
needs: Create_Flatpak
|
|
|
|
steps:
|
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
2023-12-20 08:07:49 +00:00
|
|
|
- name: Set environment variable with current branch name
|
|
|
|
run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- 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
|
|
|
|
echo "::set-output name=commits::$COMMITS"
|
|
|
|
id: commits
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
- name: Publish the flatpak in a new cooker release
|
|
|
|
uses: ncipollo/release-action@v1
|
|
|
|
with:
|
2024-08-03 14:20:51 +00:00
|
|
|
tag: "${{needs.Preparing_Build_Environment.outputs.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-03 14:20:51 +00:00
|
|
|
On branch [${{needs.Preparing_Build_Environment.outputs.branch_name}}](https://github.com/RetroDECK/RetroDECK/tree/${{needs.Preparing_Build_Environment.outputs.branch_name}}).
|
2023-12-20 08:07:49 +00:00
|
|
|
|
|
|
|
## Commits since last release
|
|
|
|
${{ steps.commits.outputs.commits }}
|
|
|
|
|
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
|
2024-08-03 14:20:51 +00:00
|
|
|
makeLatest: ${{needs.Preparing_Build_Environment.outputs.make_latest}} # if it's a feat branch is not considered the latest build
|
2023-12-20 08:07:49 +00:00
|
|
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
|
|
|
repo: RetroDECK-cooker
|
|
|
|
continue-on-error: true
|
|
|
|
|
2024-07-17 12:18:19 +00:00
|
|
|
- name: Rewrite Tag
|
|
|
|
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-03 14:20:51 +00:00
|
|
|
if git rev-parse --verify "${{ needs.Preparing_Build_Environment.outputs.tag }}" >/dev/null 2>&1; then # if the tag exists
|
|
|
|
git tag -d "${{ needs.Preparing_Build_Environment.outputs.tag }}" # remove it from local repo
|
|
|
|
git push --delete origin "${{ needs.Preparing_Build_Environment.outputs.tag }}" # and from remote
|
2024-07-17 12:18:19 +00:00
|
|
|
fi
|
2024-08-03 14:20:51 +00:00
|
|
|
git tag "${{ needs.Preparing_Build_Environment.outputs.tag }}" # Create the tag locally
|
|
|
|
git push origin "${{ needs.Preparing_Build_Environment.outputs.tag }}" # Push the new tag in the remote repo
|
2024-07-17 12:18:19 +00:00
|
|
|
|
2023-12-20 08:07:49 +00:00
|
|
|
- name: Upload RetroDECK-cooker.flatpak
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: retrodeck-flatpak
|
|
|
|
path: RetroDECK-cooker.flatpak
|
|
|
|
continue-on-error: true
|
2024-05-04 07:46:01 +00:00
|
|
|
|
2024-08-03 14:20:51 +00:00
|
|
|
Create_Artifact_For_Flathub:
|
|
|
|
runs-on: retrodeck
|
|
|
|
needs: [Create_Flatpak, Creating_Release]
|
|
|
|
steps:
|
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
2024-07-25 15:14:49 +00:00
|
|
|
- name: Create Artifact for flathub
|
|
|
|
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
|