2023-08-31 15:26:29 +00:00
|
|
|
name: "Build main"
|
2022-06-11 19:35:10 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-04-18 07:01:33 +00:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/**'
|
2023-09-04 13:10:12 +00:00
|
|
|
- 'automation_tools/**'
|
2023-04-18 07:01:33 +00:00
|
|
|
- 'emu-configs/**'
|
|
|
|
- 'es-configs/**'
|
2023-09-04 13:10:12 +00:00
|
|
|
- 'functions/**'
|
2023-04-18 07:01:33 +00:00
|
|
|
- 'rd-submodules/**'
|
|
|
|
- '*.sh'
|
|
|
|
- 'net.retrodeck.retrodeck.yml'
|
|
|
|
- 'net.retrodeck.retrodeck.appdata.xml'
|
2022-06-11 19:35:10 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2022-08-31 11:52:49 +00:00
|
|
|
Building_RetroDECK:
|
2022-06-11 19:35:10 +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
|
2022-06-11 19:35:10 +00:00
|
|
|
|
2023-08-30 09:59:30 +00:00
|
|
|
- name: Clone RetroDECK repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
2022-06-11 19:35:10 +00:00
|
|
|
|
2023-08-31 08:11:59 +00:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "automation_tools/install_dependencies.sh"
|
2023-08-30 09:59:30 +00:00
|
|
|
|
|
|
|
- name: Run pre-build automation tasks
|
|
|
|
run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
|
|
|
|
|
2023-08-25 13:30:40 +00:00
|
|
|
- name: Read manifest content
|
|
|
|
id: read_manifest
|
|
|
|
run: echo "::set-output name=file_content::$(cat net.retrodeck.retrodeck.yml)"
|
2023-08-31 12:25:57 +00:00
|
|
|
|
2023-08-31 12:28:57 +00:00
|
|
|
# - name: "Updating release notes in appdata"
|
|
|
|
# run: "automation_tools/appdata_management.sh"
|
2023-08-25 13:30:40 +00:00
|
|
|
|
2023-08-31 09:07:14 +00:00
|
|
|
- name: Check versions (main only)
|
2023-08-25 13:30:40 +00:00
|
|
|
id: check_version_string
|
2023-09-26 07:20:19 +00:00
|
|
|
run: "automation_tools/main_version_checker.sh"
|
|
|
|
|
|
|
|
- name: "[DEBUG] Outputting manifest"
|
|
|
|
run: cat net.retrodeck.retrodeck.yml
|
2023-08-25 13:13:31 +00:00
|
|
|
|
2023-08-30 16:03:03 +00:00
|
|
|
- name: "Build flatpak: download only"
|
|
|
|
id: "flatpak-download"
|
2023-09-26 07:20:19 +00:00
|
|
|
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'
|
2023-12-16 17:25:01 +00:00
|
|
|
run: |
|
|
|
|
echo "Download failed, maybe some hash changed since the build start."
|
|
|
|
git checkout -- net.retrodeck.retrodeck.yml
|
|
|
|
echo "Recalculating hashes and retrying download..."
|
|
|
|
"/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
|
|
|
|
"/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
|
2023-08-30 16:03:03 +00:00
|
|
|
|
2022-06-11 19:35:10 +00:00
|
|
|
- name: Build flatpak
|
2023-09-26 07:20:19 +00:00
|
|
|
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh"
|
2022-10-13 20:14:04 +00:00
|
|
|
|
|
|
|
- name: Create Artifact for flathub
|
|
|
|
run: |
|
|
|
|
tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-main .
|
|
|
|
hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz))
|
|
|
|
echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact.sha
|
|
|
|
mv -f RetroDECK-Artifact.* ${{ secrets.ARTIFACT_REPO }}
|
2022-06-11 19:35:10 +00:00
|
|
|
|
|
|
|
- name: Create Bundle
|
2023-09-26 07:20:19 +00:00
|
|
|
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh"
|
2022-06-11 19:35:10 +00:00
|
|
|
|
2023-03-19 08:54:43 +00:00
|
|
|
- name: Getting version info
|
|
|
|
id: version
|
|
|
|
run: |
|
|
|
|
appdata="https://raw.githubusercontent.com/XargonWan/RetroDECK/main/net.retrodeck.retrodeck.appdata.xml"
|
|
|
|
REL_VER=$(curl -s $appdata | xmlstarlet sel -t -v "//release/@version" | head -1)
|
|
|
|
DES="$(curl -s $appdata | xmlstarlet sel -t -m "//release[1]" -v "description" -n | sed '1,2d;$d;s/^ */- /;/^- $/d')"
|
|
|
|
echo "REL_VER=$REL_VER" >> $GITHUB_ENV
|
|
|
|
echo -e "# Release Notes\n" >> "body.md"
|
|
|
|
echo "$DES" >> "body.md"
|
|
|
|
|
2022-06-11 19:35:10 +00:00
|
|
|
- name: Publish the flatpak in a new release
|
|
|
|
uses: ncipollo/release-action@v1
|
2023-03-19 08:54:43 +00:00
|
|
|
env:
|
|
|
|
REL_VER: ${{ env.REL_VER }}
|
2022-06-11 19:35:10 +00:00
|
|
|
with:
|
2023-03-19 08:54:43 +00:00
|
|
|
tag: ${{ env.REL_VER }}
|
|
|
|
name: "RetroDECK v${{ env.REL_VER }}"
|
|
|
|
bodyFile: "body.md"
|
2022-10-13 20:14:04 +00:00
|
|
|
artifacts: "RetroDECK.flatpak,RetroDECK-Artifact.tar.gz"
|
2022-06-11 19:35:10 +00:00
|
|
|
allowUpdates: true
|
2023-03-21 16:14:44 +00:00
|
|
|
makeLatest: true
|
2022-06-11 19:35:10 +00:00
|
|
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
|
|
|
repo: RetroDECK
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
# In case it cannot publish the release at least it's providing the flatpak file for creating a manual release
|
|
|
|
- name: Upload RetroDECK.flatpak
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: retrodeck-flatpak
|
|
|
|
path: RetroDECK.flatpak
|
2023-04-17 15:28:58 +00:00
|
|
|
continue-on-error: true
|