RetroDECK/.github/workflows/cooker.yml

200 lines
6.8 KiB
YAML
Raw Normal View History

2022-05-05 01:32:39 +00:00
name: cooker
2022-04-05 13:23:53 +00:00
on:
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
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-16 08:57:15 +00:00
Job1_-_Building_P1:
2022-05-01 13:43:26 +00:00
runs-on: ubuntu-latest
steps:
2022-05-17 03:11:31 +00:00
- 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: Generate build ID
2022-05-17 03:17:45 +00:00
id: generating_buildid
2022-05-17 03:20:22 +00:00
run: echo "##[set-output name=build-id;]$(echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}")"
2022-05-17 03:11:31 +00:00
- uses: actions/checkout@v3
- name: Download global cache
2022-05-21 04:27:13 +00:00
uses: dawidd6/action-download-artifact@v2
2022-05-17 03:11:31 +00:00
with:
2022-05-21 04:27:13 +00:00
workflow: cooker.yml
2022-05-17 03:11:31 +00:00
name: global-cache
2022-05-21 04:27:13 +00:00
search_artifacts: true
skip_unpack: true
continue-on-error: true
- name: Extract global cache
run: |
tar --skip-old-files -xzvf retrodeck-cooker.tar.gz
rm -f retrodeck-cooker.tar.gz
2022-05-17 03:11:31 +00:00
continue-on-error: true
- name: DEBUG
run: |
echo "Listing folder $PWD contents"
ls -lna
echo "Checking for version file"
find ~ -iname version
cat $(find ~ -iname version)
- name: Initialize enviornment
2022-05-17 03:11:31 +00:00
run: |
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
- name: Buld part 1 - Until melonds
2022-05-17 03:11:31 +00:00
run: |
sudo flatpak-builder --build-only --stop-at=melonds --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
2022-05-17 03:11:31 +00:00
- name: Compress cache
2022-05-17 03:11:31 +00:00
run: |
touch retrodeck-cooker.tar.gz
rm -rf .flatpak-builder/build/*-{2,3,4,5,6}
find .flatpak-builder/build -xtype l -exec rm {} \; # removing dead symlinks
tar --ignore-failed-read -czvf retrodeck-cooker.tar.gz retrodeck-flatpak-cooker .flatpak-builder/build
2022-05-17 03:11:31 +00:00
- name: Upload build specific cache
uses: actions/upload-artifact@v3
with:
2022-05-17 03:17:45 +00:00
name: "${{ steps.generating_buildid.outputs.build-id }}"
2022-05-17 03:11:31 +00:00
path: retrodeck-cooker.tar.gz
2022-05-16 08:57:15 +00:00
# this is done to speed up the things now, it may be removed later
- name: Compress global cache
run: |
touch retrodeck-cooker.tar.gz
rm -rf .flatpak-builder/build/*-{2,3,4,5,6}
find .flatpak-builder/build -xtype l -exec rm {} \; # removing dead symlinks
tar --ignore-failed-read -czvf retrodeck-cooker.tar.gz retrodeck-flatpak-cooker .flatpak-builder/build
continue-on-error: true
- name: Upload global cache
uses: actions/upload-artifact@v3
with:
name: global-cache
path: retrodeck-cooker.tar.gz RetroDECK.flatpak
continue-on-error: true
2022-05-17 03:17:45 +00:00
outputs:
buildID: "${{ steps.generating_buildid.outputs.build-id }}"
2022-05-16 08:57:15 +00:00
Job2_-_Build_P2_and_publish:
2022-05-01 04:21:33 +00:00
runs-on: ubuntu-latest
2022-05-16 08:57:15 +00:00
needs: [Job1_-_Building_P1]
2022-05-01 04:21:33 +00:00
steps:
- uses: actions/checkout@v3
2022-05-03 01:44:44 +00:00
- name: Download build specific cache
uses: actions/download-artifact@v2
2022-04-30 07:44:47 +00:00
with:
2022-05-16 15:30:36 +00:00
name: ${{ needs.Job1_-_Building_P1.outputs.buildID }}
- name: Extract cache
run: |
tar --skip-old-files -xzvf retrodeck-cooker.tar.gz
rm -f retrodeck-cooker.tar.gz
2022-05-01 04:21:33 +00:00
- name: DEBUG
run: |
echo "Listing folder $PWD contents"
ls -lna
echo "Checking for version file"
find ~ -iname version
cat $(find ~ -iname version)
- name: Initialize enviornment
2022-05-01 04:21:33 +00:00
run: |
git pull
2022-05-01 04:21:33 +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
- name: Create Bundle
2022-05-01 04:21:33 +00:00
run: |
sudo flatpak-builder --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
2022-05-12 15:21:47 +00:00
sudo flatpak build-bundle $GITHUB_WORKSPACE/local RetroDECK.flatpak net.retrodeck.retrodeck
2022-04-30 07:44:47 +00:00
- name: Get date for artifacts
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M')"
- 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-21 00:35:22 +00:00
- name: Read version from version file
id: version
2022-05-22 00:54:27 +00:00
run: echo "##[set-output name=version;]$(cat $(find . -name version))"
2022-05-20 02:43:09 +00:00
2022-05-03 01:55:39 +00:00
- name: Publish the flatpak in a new cooker release
uses: ncipollo/release-action@v1
with:
#tag: "${{ steps.version.outputs.version }}"
tag: "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
2022-05-03 01:55:39 +00:00
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
2022-05-21 23:57:04 +00:00
continue-on-error: true
2022-05-03 01:55:39 +00:00
- name: Compress global cache
run: |
touch retrodeck-cooker.tar.gz
2022-05-11 01:34:18 +00:00
rm -rf .flatpak-builder/build/*-{2,3,4,5,6}
2022-05-11 01:34:29 +00:00
find .flatpak-builder/build -xtype l -exec rm {} \; # removing dead symlinks
tar --ignore-failed-read -czvf retrodeck-cooker.tar.gz retrodeck-flatpak-cooker .flatpak-builder/build
2022-05-13 11:00:18 +00:00
continue-on-error: true
2022-05-03 01:55:39 +00:00
- name: Upload global cache
uses: actions/upload-artifact@v3
with:
name: global-cache
path: retrodeck-cooker.tar.gz RetroDECK.flatpak
continue-on-error: true
- name: Upload RetroDECK.flatpak
uses: actions/upload-artifact@v3
with:
name: retrodeck-flatpak
path: RetroDECK.flatpak
continue-on-error: true