2022-06-06 12:33:52 +00:00
|
|
|
name: cooker-selfhosted
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- cooker*
|
2023-04-18 07:03:50 +00:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/**'
|
2023-08-30 15:20:28 +00:00
|
|
|
- 'automation_tools'
|
2023-04-18 07:03:50 +00:00
|
|
|
- 'emu-configs/**'
|
|
|
|
- 'es-configs/**'
|
2023-08-30 15:20:28 +00:00
|
|
|
- 'functions'
|
2023-04-18 07:03:50 +00:00
|
|
|
- 'rd-submodules/**'
|
|
|
|
- '*.sh'
|
|
|
|
- 'net.retrodeck.retrodeck.yml'
|
|
|
|
- 'net.retrodeck.retrodeck.appdata.xml'
|
2022-06-06 12:33:52 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- cooker*
|
|
|
|
|
2022-06-13 19:10:18 +00:00
|
|
|
workflow_dispatch:
|
2022-06-06 12:33:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2022-08-31 11:52:49 +00:00
|
|
|
Building_RetroDECK:
|
2022-06-06 12:33:52 +00:00
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
|
|
|
2023-03-21 14:14:28 +00:00
|
|
|
# Circumventing this bug: https://github.com/flatpak/flatpak-builder/issues/317
|
2023-03-21 14:08:27 +00:00
|
|
|
- name: Remove stuck mounts
|
|
|
|
run: sudo umount -f /home/ubuntu/actions-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/*
|
|
|
|
continue-on-error: true
|
2023-05-03 09:12:00 +00:00
|
|
|
|
2023-08-30 16:03:03 +00:00
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
2022-09-06 19:40:27 +00:00
|
|
|
|
2023-08-30 09:56:42 +00:00
|
|
|
- name: Generate cooker build ID
|
2023-05-03 09:12:00 +00:00
|
|
|
run: |
|
2023-05-25 16:16:30 +00:00
|
|
|
word1=$(shuf -n 1 ${GITHUB_WORKSPACE}/automation_tools/codename_wordlist.txt)
|
2023-05-03 09:12:00 +00:00
|
|
|
capitalized_word1="$(tr '[:lower:]' '[:upper:]' <<< ${word1:0:1})${word1:1}"
|
2023-05-25 16:16:30 +00:00
|
|
|
word2=$(shuf -n 1 ${GITHUB_WORKSPACE}/automation_tools/codename_wordlist.txt)
|
2023-05-03 09:12:00 +00:00
|
|
|
capitalized_word2="$(tr '[:lower:]' '[:upper:]' <<< ${word2:0:1})${word2:1}"
|
|
|
|
result=$capitalized_word1$capitalized_word2
|
2023-05-05 20:20:49 +00:00
|
|
|
echo $result > ${GITHUB_WORKSPACE}/buildid
|
2023-05-03 09:12:00 +00:00
|
|
|
echo "buildid=$result" >> $GITHUB_ENV
|
2023-05-03 12:27:57 +00:00
|
|
|
echo "VersionID is $result"
|
2022-06-06 12:33:52 +00:00
|
|
|
|
2023-08-30 08:57:38 +00:00
|
|
|
- name: Initialize Flatpak environment
|
2022-06-06 12:33:52 +00:00
|
|
|
run: |
|
2023-03-19 09:55:18 +00:00
|
|
|
sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet bzip2
|
2022-06-16 09:37:56 +00:00
|
|
|
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
2023-08-30 08:57:38 +00:00
|
|
|
|
|
|
|
- name: Run pre-build automation tasks
|
|
|
|
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
|
|
|
|
|
2023-08-30 15:26:16 +00:00
|
|
|
# remove me when the automations tool substitution can do this
|
|
|
|
- name: Set branch in the manifest
|
2023-08-25 13:13:31 +00:00
|
|
|
run: |
|
2023-08-25 13:30:40 +00:00
|
|
|
sed -i "s/THISBRANCH/$(git rev-parse --abbrev-ref HEAD)/g" net.retrodeck.retrodeck.yml
|
2023-08-25 13:16:24 +00:00
|
|
|
echo "Branch name is: $(git rev-parse --abbrev-ref HEAD)"
|
2022-06-06 12:33:52 +00:00
|
|
|
|
2023-08-30 16:03:03 +00:00
|
|
|
- name: "Build flatpak: download only"
|
|
|
|
id: "flatpak-download"
|
|
|
|
run: |
|
|
|
|
git config --global protocol.file.allow always
|
|
|
|
mkdir -vp ${GITHUB_WORKSPACE}/local
|
|
|
|
mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker
|
|
|
|
flatpak-builder --user --force-clean \
|
|
|
|
--install-deps-from=flathub \
|
|
|
|
--install-deps-from=flathub-beta \
|
|
|
|
--repo=${GITHUB_WORKSPACE}/local \
|
|
|
|
--download-only \
|
|
|
|
${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker \
|
|
|
|
net.retrodeck.retrodeck.yml
|
|
|
|
|
|
|
|
# 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: |
|
|
|
|
git config --global protocol.file.allow always
|
|
|
|
mkdir -vp ${GITHUB_WORKSPACE}/local
|
|
|
|
mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker
|
|
|
|
flatpak-builder --user --force-clean \
|
|
|
|
--install-deps-from=flathub \
|
|
|
|
--install-deps-from=flathub-beta \
|
|
|
|
--repo=${GITHUB_WORKSPACE}/local \
|
|
|
|
--download-only \
|
|
|
|
${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker \
|
|
|
|
net.retrodeck.retrodeck.yml
|
|
|
|
|
2022-06-06 12:46:11 +00:00
|
|
|
- name: Build flatpak
|
2022-06-06 12:33:52 +00:00
|
|
|
run: |
|
2022-11-16 15:48:08 +00:00
|
|
|
git config --global protocol.file.allow always
|
2023-03-21 08:52:04 +00:00
|
|
|
mkdir -vp ${GITHUB_WORKSPACE}/local
|
|
|
|
mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker
|
2023-08-30 09:26:02 +00:00
|
|
|
flatpak-builder --user --force-clean \
|
|
|
|
--install-deps-from=flathub \
|
|
|
|
--install-deps-from=flathub-beta \
|
|
|
|
--repo=${GITHUB_WORKSPACE}/local \
|
|
|
|
--disable-download \
|
|
|
|
${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker \
|
|
|
|
net.retrodeck.retrodeck.yml
|
2022-06-06 12:33:52 +00:00
|
|
|
|
2022-10-08 10:17:04 +00:00
|
|
|
- name: Create Artifact for flathub
|
|
|
|
run: |
|
2023-03-21 08:52:04 +00:00
|
|
|
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 }}
|
2022-10-09 15:38:11 +00:00
|
|
|
continue-on-error: true
|
2022-10-08 10:17:04 +00:00
|
|
|
|
2022-06-06 12:33:52 +00:00
|
|
|
- name: Create Bundle
|
|
|
|
run: |
|
2023-08-30 08:57:38 +00:00
|
|
|
flatpak build-bundle ${GITHUB_WORKSPACE}/local RetroDECK-cooker.flatpak net.retrodeck.retrodeck
|
2022-06-06 12:33:52 +00:00
|
|
|
|
2023-03-20 16:33:15 +00:00
|
|
|
- name: Set environment variable with current branch name
|
|
|
|
run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
|
|
|
|
|
2023-08-30 09:01:44 +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
|
|
|
|
echo "::set-output name=commits::$COMMITS"
|
|
|
|
id: commits
|
2023-08-30 12:12:52 +00:00
|
|
|
continue-on-error: true
|
2023-08-30 09:01:44 +00:00
|
|
|
|
2022-06-06 12:33:52 +00:00
|
|
|
- name: Publish the flatpak in a new cooker release
|
|
|
|
uses: ncipollo/release-action@v1
|
|
|
|
with:
|
2023-05-03 15:21:32 +00:00
|
|
|
tag: "${{ env.GITHUB_REF_SLUG }}-${{ env.buildid }}"
|
2022-06-06 12:33:52 +00:00
|
|
|
body: |
|
|
|
|
# Release Notes (Cooker)
|
|
|
|
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
2023-06-26 08:46:35 +00:00
|
|
|
|
2023-08-30 09:01:44 +00:00
|
|
|
## Commits since last release
|
|
|
|
${{ steps.commits.outputs.commits }}
|
|
|
|
|
2023-06-26 08:46:35 +00:00
|
|
|
For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/qQcrFvaA2C) on our Discord server.
|
2022-06-06 12:33:52 +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.
|
|
|
|
|
2023-08-30 08:57:38 +00:00
|
|
|
artifacts: "RetroDECK-cooker.flatpak,RetroDECK-Artifact.tar.gz"
|
2022-06-06 12:33:52 +00:00
|
|
|
allowUpdates: true
|
2023-03-21 16:14:44 +00:00
|
|
|
makeLatest: true
|
2022-06-06 12:33:52 +00:00
|
|
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
|
|
|
repo: RetroDECK-cooker
|
|
|
|
continue-on-error: true
|
|
|
|
|
2022-06-11 19:35:10 +00:00
|
|
|
# In case it cannot publish the release at least it's providing the flatpak file for creating a manual release
|
2023-08-30 08:57:38 +00:00
|
|
|
- name: Upload RetroDECK-cooker.flatpak
|
2022-06-06 12:33:52 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: retrodeck-flatpak
|
2023-08-30 08:57:38 +00:00
|
|
|
path: RetroDECK-cooker.flatpak
|
2023-08-25 13:59:31 +00:00
|
|
|
continue-on-error: true
|