RetroDECK/.github/workflows/cooker-selfhosted.yml

123 lines
4.8 KiB
YAML
Raw Normal View History

2022-06-06 12:33:52 +00:00
name: cooker-selfhosted
on:
push:
branches:
- cooker*
paths:
- '.github/workflows/**'
- 'emu-configs/**'
- 'es-configs/**'
- '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 08:57:38 +00:00
- name: Clone RetroDECK repo
uses: actions/checkout@v3
with:
submodules: 'true'
2022-09-06 19:40:27 +00:00
2022-06-06 12:33:52 +00:00
- name: Generate 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
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
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"
- name: Set branch in the manifest
run: |
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:46:11 +00:00
- name: Build flatpak
2022-06-06 12:33:52 +00:00
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 ${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: |
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
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
- 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
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
## 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
# 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
continue-on-error: true