RetroDECK/.github/workflows/cooker.yml

339 lines
13 KiB
YAML
Raw Normal View History

2022-04-05 13:23:53 +00:00
# Due to the changes to the build systems actually on the branch integrated, this script will fail on main until merged
name: Cooker
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
2022-04-07 12:49:19 +00:00
branches:
- cooker*
2022-04-05 13:23:53 +00:00
pull_request:
2022-04-07 12:49:19 +00:00
branches:
- cooker*
2022-04-05 13:23:53 +00:00
# Allows you to run this workflow manually from the Actions tab
2022-04-05 13:23:53 +00:00
workflow_dispatch:
2022-05-01 13:43:26 +00:00
2022-04-05 13:23:53 +00:00
jobs:
2022-04-06 13:16:24 +00:00
2022-05-01 13:43:26 +00:00
Job1_-_Prepearing_enviornment:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it+++++++++++++++++++++++++++++++++++
- name: Get date for artifacts
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M%S')"
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Generating build ID
run: echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
outputs:
buildID: "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
2022-04-30 08:40:28 +00:00
Job2_-_Downloading_Sources:
2022-04-30 01:35:55 +00:00
runs-on: ubuntu-latest
2022-05-01 13:43:26 +00:00
needs: [Job1_-_Prepearing_enviornment]
2022-04-05 13:23:53 +00:00
steps:
2022-05-01 04:21:33 +00:00
2022-05-03 01:44:44 +00:00
- name: Download global cache
uses: actions/download-artifact@v2
2022-05-01 04:21:33 +00:00
with:
2022-05-02 01:15:55 +00:00
name: global-cache
continue-on-error: true
- name: Exctracting cache
run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK
2022-05-01 04:21:33 +00:00
- uses: actions/checkout@v3
#if: steps.global-cache.outputs.cache-hit != 'true'
2022-04-30 08:40:28 +00:00
- name: Downloading sources
2022-04-05 13:23:53 +00:00
run: |
git pull
2022-04-06 08:17:10 +00:00
git submodule init
git submodule update
2022-04-06 13:16:24 +00:00
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt-get update
2022-04-06 13:20:03 +00:00
sudo apt install flatpak flatpak-builder p7zip-full
2022-04-06 13:16:24 +00:00
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13
2022-05-02 11:53:10 +00:00
sudo flatpak-builder --download-only --user --repo=local retrodeck-flatpak net.retrodeck.retrodeck.yml
2022-04-30 01:35:55 +00:00
2022-05-03 01:44:44 +00:00
# - name: Generating build specific cache
# id: intenral-cache
# uses: actions/cache@v2
# with:
# retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
# key: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
- name: Compressing cache
run: zip -r retrodeck-cooker.zip /home/runner/work/RetroDECK/* -x retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
- name: Upload build specific cache
uses: actions/upload-artifact@v3
2022-05-01 13:43:26 +00:00
with:
2022-05-03 01:44:44 +00:00
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
2022-05-01 13:43:26 +00:00
2022-05-01 04:21:33 +00:00
# - name: Continuing with previous worklow cache
# if: steps.cache-cooker.outputs.cache-hit == 'true'
# run: |
# cd /home/runner/work/RetroDECK/RetroDECK
# git pull
# git submodule init
# git submodule update
# sudo add-apt-repository ppa:alexlarsson/flatpak
# sudo apt-get update
# sudo apt install flatpak flatpak-builder p7zip-full
# sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13
2022-05-02 11:53:10 +00:00
# sudo flatpak-builder --download-only --user --repo=local retrodeck-flatpak net.retrodeck.retrodeck.yml
2022-05-01 04:21:33 +00:00
Job3_-_Building_part_1:
runs-on: ubuntu-latest
needs: [Job1_-_Prepearing_enviornment, Job2_-_Downloading_Sources]
2022-05-01 04:21:33 +00:00
steps:
#- uses: actions/checkout@v3
2022-05-03 01:44:44 +00:00
# - name: cache-cooker
# id: internal-cache
# uses: actions/cache@v2
# with:
# retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
# key: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
- name: Download build specific cache
uses: actions/download-artifact@v2
2022-04-30 07:44:47 +00:00
with:
2022-05-03 01:44:44 +00:00
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
- name: Exctracting cache
run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK
2022-04-30 07:44:47 +00:00
2022-05-01 04:21:33 +00:00
- name: Initializing enviornment
#if: steps.cache-cooker.outputs.cache-hit != 'true'
run: |
2022-04-30 08:40:28 +00:00
git submodule init
git submodule update
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt-get update
sudo apt install flatpak flatpak-builder p7zip-full
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13
2022-05-01 04:21:33 +00:00
2022-05-02 11:53:10 +00:00
- name: Bulding part 1 - Until melonds
2022-05-01 05:25:42 +00:00
#if: steps.cache-cooker.outputs.cache-hit != 'true'
2022-05-01 04:21:33 +00:00
run: |
cd /home/runner/work/RetroDECK/RetroDECK
2022-05-02 11:53:10 +00:00
sudo flatpak-builder --build-only --stop-at=melonds --user --repo=local retrodeck-flatpak net.retrodeck.retrodeck.yml
2022-04-30 01:35:55 +00:00
- name: Compressing cache
run: zip -r retrodeck-cooker.zip /home/runner/work/RetroDECK/* -x retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
- name: Upload build specific cache
uses: actions/upload-artifact@v3
with:
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
2022-05-01 04:21:33 +00:00
Job4_-_Building_part_2:
runs-on: ubuntu-latest
needs: [Job1_-_Prepearing_enviornment, Job2_-_Downloading_Sources, Job3_-_Building_part_1]
2022-05-01 04:21:33 +00:00
steps:
#- uses: actions/checkout@v3
- name: Download build specific cache
uses: actions/download-artifact@v2
2022-04-30 07:44:47 +00:00
with:
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
2022-04-30 07:44:47 +00:00
2022-05-01 04:21:33 +00:00
- name: Initializing enviornment
#if: steps.cache-cooker.outputs.cache-hit != 'true'
run: |
git submodule init
git submodule update
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt-get update
sudo apt install flatpak flatpak-builder p7zip-full
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13
2022-04-30 01:35:55 +00:00
2022-05-01 04:21:33 +00:00
- name: Bulding part 1 - Until the end
2022-05-01 05:25:42 +00:00
#if: steps.cache-cooker.outputs.cache-hit != 'true'
2022-05-01 04:21:33 +00:00
run: |
cd /home/runner/work/RetroDECK/RetroDECK
2022-05-02 11:53:10 +00:00
sudo flatpak-builder --build-only --user --repo=local retrodeck-flatpak net.retrodeck.retrodeck.yml
2022-04-30 07:44:47 +00:00
- name: Compressing cache
run: zip -r retrodeck-cooker.zip /home/runner/work/RetroDECK/* -x retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
- name: Upload build specific cache
uses: actions/upload-artifact@v3
with:
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
Job5_-_Finishing_build:
runs-on: ubuntu-latest
needs: [Job1_-_Prepearing_enviornment, Job2_-_Downloading_Sources, Job3_-_Building_part_1, Job4_-_Building_part_2]
steps:
2022-05-01 04:21:33 +00:00
#- uses: actions/checkout@v3
2022-04-30 01:35:55 +00:00
2022-05-03 01:44:44 +00:00
# - name: cache-cooker
# id: internal-cache
# uses: actions/cache@v2
# with:
# retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
# key: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
- name: Download build specific cache
uses: actions/download-artifact@v2
2022-04-30 07:44:47 +00:00
with:
2022-05-03 01:44:44 +00:00
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
- name: Exctracting cache
run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK
2022-05-01 04:21:33 +00:00
- name: Initializing enviornment
#if: steps.cache-cooker.outputs.cache-hit != 'true'
run: |
git submodule init
git submodule update
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt-get update
sudo apt install flatpak flatpak-builder p7zip-full
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13
- name: Finishing build
2022-05-01 05:25:42 +00:00
#if: steps.cache-cooker.outputs.cache-hit != 'true'
2022-05-01 04:21:33 +00:00
run: |
cd /home/runner/work/RetroDECK/RetroDECK
2022-05-02 11:53:10 +00:00
sudo flatpak-builder --finish-only --user --repo=local retrodeck-flatpak net.retrodeck.retrodeck.yml
2022-04-30 07:44:47 +00:00
- name: Compressing cache
run: zip -r retrodeck-cooker.zip /home/runner/work/RetroDECK/* -x retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
- name: Upload build specific cache
uses: actions/upload-artifact@v3
with:
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
Job6_-_Build_bundle:
runs-on: ubuntu-latest
needs: [Job1_-_Prepearing_enviornment, Job2_-_Downloading_Sources, Job3_-_Building_part_1, Job4_-_Building_part_2, Job5_-_Finishing_build]
steps:
2022-05-01 04:21:33 +00:00
#- uses: actions/checkout@v3
2022-04-30 01:35:55 +00:00
2022-05-03 01:44:44 +00:00
# - name: cache-cooker
# id: internal-cache
# uses: actions/cache@v2
# with:
# retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
# key: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
- name: Download build specific cache
uses: actions/download-artifact@v2
2022-04-30 07:44:47 +00:00
with:
2022-05-03 01:44:44 +00:00
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
- name: Exctracting cache
run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK
2022-05-01 04:21:33 +00:00
- name: Initializing enviornment
#if: steps.cache-cooker.outputs.cache-hit != 'true'
run: |
git submodule init
git submodule update
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt-get update
sudo apt install flatpak flatpak-builder p7zip-full
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13
- name: Build bundle
2022-05-01 05:25:42 +00:00
#if: steps.cache-cooker.outputs.cache-hit != 'true'
2022-05-01 04:21:33 +00:00
run: |
cd /home/runner/work/RetroDECK/RetroDECK
sudo flatpak build-bundle local RetroDECK.flatpak net.retrodeck.retrodeck
2022-04-30 07:44:47 +00:00
- name: Compressing cache
run: zip -r retrodeck-cooker.zip /home/runner/work/RetroDECK/* -x retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
- name: Upload build specific cache
uses: actions/upload-artifact@v3
with:
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
Job7_-_Publishing_flatpak:
runs-on: ubuntu-latest
needs: [Job1_-_Prepearing_enviornment, Job2_-_Downloading_Sources, Job3_-_Building_part_1, Job4_-_Building_part_2, Job5_-_Finishing_build, Job6_-_Build_bundle]
steps:
2022-04-05 13:23:53 +00:00
2022-05-03 01:44:44 +00:00
# - name: cache-cooker
# id: internal-cache
# uses: actions/cache@v2
# with:
# retrodeck-cooker.zip
2022-05-03 01:44:44 +00:00
# key: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
2022-05-03 01:55:39 +00:00
- name: Download build specific cache
2022-05-03 01:44:44 +00:00
uses: actions/download-artifact@v2
with:
name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }}
path: retrodeck-cooker.zip
- name: Exctracting cache
run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK
2022-05-01 04:21:33 +00:00
2022-05-03 01:55:39 +00:00
- name: Get date for artifacts
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M')"
2022-04-06 15:48:34 +00:00
2022-05-03 01:55:39 +00:00
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
2022-04-22 06:21:52 +00:00
2022-05-03 01:55:39 +00:00
- name: Publish the flatpak in a new cooker release
#if: steps.cache-cooker.outputs.cache-hit != 'true'
uses: ncipollo/release-action@v1
with:
tag: "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
body: |
# Release Notes (Cooker)
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
2022-05-03 01:51:01 +00:00
2022-05-03 01:55:39 +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.
artifacts: "RetroDECK.flatpak"
allowUpdates: true
prerelease: true
draft: false
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
repo: RetroDECK-cooker
- name: Compressing cache
run: zip -r retrodeck-cooker.zip /home/runner/work/RetroDECK/* -x retrodeck-cooker.zip
2022-05-03 01:55:39 +00:00
- name: Upload global cache
uses: actions/upload-artifact@v3
with:
name: global-cache
path: retrodeck-cooker.zip
2022-05-03 01:55:39 +00:00
continue-on-error: true