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

134 lines
5 KiB
YAML
Raw Normal View History

2023-08-31 15:26:29 +00:00
name: "Build cooker"
2022-06-06 12:33:52 +00:00
on:
push:
branches:
- cooker*
paths:
- '.github/workflows/**'
2023-09-04 13:10:12 +00:00
- 'automation_tools/**'
- 'emu-configs/**'
- 'es-configs/**'
2023-09-04 13:10:12 +00:00
- 'functions/**'
- '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-31 12:25:57 +00:00
- name: "Install dependencies"
run: "automation_tools/install_dependencies.sh"
- 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
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: 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)"
2023-09-26 07:10:08 +00:00
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh"
2022-06-06 12:33:52 +00:00
2023-08-31 12:28:57 +00:00
# - name: "Updating release notes in appdata"
# run: "automation_tools/appdata_management.sh"
2023-08-31 12:25:57 +00:00
- name: "[DEBUG] Outputting manifest"
run: cat net.retrodeck.retrodeck.yml
2023-08-30 16:03:03 +00:00
- name: "Build flatpak: download only"
id: "flatpak-download"
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
2023-09-04 14:11:13 +00:00
continue-on-error: true
2023-08-30 16:03:03 +00:00
# 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: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
2023-08-30 16:03:03 +00:00
2022-06-06 12:46:11 +00:00
- name: Build flatpak
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh"
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: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh"
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
continue-on-error: true
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
2023-08-25 13:59:31 +00:00
continue-on-error: true