WORKLFOW: chopped self-hosted

This commit is contained in:
XargonWan 2022-06-06 14:46:11 +02:00
parent 91743bffa0
commit a317c0cfda

View file

@ -13,7 +13,7 @@ on:
jobs: jobs:
Job1_-_Building_P1: Building_flatpak:
runs-on: self-hosted runs-on: self-hosted
steps: steps:
@ -32,28 +32,20 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Download global cache # - name: Download global cache
uses: dawidd6/action-download-artifact@v2 # uses: dawidd6/action-download-artifact@v2
with: # with:
workflow: cooker.yml # workflow: cooker.yml
name: global-cache # name: global-cache
search_artifacts: true # search_artifacts: true
skip_unpack: true # skip_unpack: true
continue-on-error: true # continue-on-error: true
- name: Extract global cache # - name: Extract global cache
run: | # run: |
tar --skip-old-files -xzvf retrodeck-cooker.tar.gz # tar --skip-old-files -xzvf retrodeck-cooker.tar.gz
rm -f retrodeck-cooker.tar.gz # rm -f retrodeck-cooker.tar.gz
continue-on-error: true # 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 - name: Initialize enviornment
run: | run: |
@ -66,77 +58,72 @@ jobs:
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo 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 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 - name: Build flatpak
run: | run: |
sudo flatpak-builder --build-only --stop-at=melonds --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml sudo flatpak-builder --build-only --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
- name: Compress cache # - name: Compress cache
run: | # run: |
touch retrodeck-cooker.tar.gz # touch retrodeck-cooker.tar.gz
rm -rf .flatpak-builder/build/*-{2,3,4,5,6} # rm -rf .flatpak-builder/build/*-{2,3,4,5,6}
find .flatpak-builder/build -xtype l -exec rm {} \; # removing dead symlinks # 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 # tar --ignore-failed-read -czvf retrodeck-cooker.tar.gz retrodeck-flatpak-cooker .flatpak-builder/build
- name: Upload build specific cache # - name: Upload build specific cache
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: "${{ steps.generating_buildid.outputs.build-id }}" # name: "${{ steps.generating_buildid.outputs.build-id }}"
path: retrodeck-cooker.tar.gz # path: retrodeck-cooker.tar.gz
# this is done to speed up the things now, it may be removed later # this is done to speed up the things now, it may be removed later
- name: Compress global cache # - name: Compress global cache
run: | # run: |
touch retrodeck-cooker.tar.gz # touch retrodeck-cooker.tar.gz
rm -rf .flatpak-builder/build/*-{2,3,4,5,6} # rm -rf .flatpak-builder/build/*-{2,3,4,5,6}
find .flatpak-builder/build -xtype l -exec rm {} \; # removing dead symlinks # 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 # tar --ignore-failed-read -czvf retrodeck-cooker.tar.gz retrodeck-flatpak-cooker .flatpak-builder/build
continue-on-error: true # continue-on-error: true
- name: Upload global cache # - name: Upload global cache
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: global-cache # name: global-cache
path: retrodeck-cooker.tar.gz RetroDECK.flatpak # path: retrodeck-cooker.tar.gz RetroDECK.flatpak
continue-on-error: true # continue-on-error: true
outputs: # outputs:
buildID: "${{ steps.generating_buildid.outputs.build-id }}" # buildID: "${{ steps.generating_buildid.outputs.build-id }}"
Job2_-_Build_P2_and_publish: # - uses: actions/checkout@v3
runs-on: ubuntu-latest
needs: [Job1_-_Building_P1]
steps:
- uses: actions/checkout@v3 # - name: Download build specific cache
# uses: actions/download-artifact@v2
# with:
# name: ${{ needs.Job1_-_Building_P1.outputs.buildID }}
- name: Download build specific cache # - name: Extract cache
uses: actions/download-artifact@v2 # run: |
with: # tar --skip-old-files -xzvf retrodeck-cooker.tar.gz
name: ${{ needs.Job1_-_Building_P1.outputs.buildID }} # rm -f retrodeck-cooker.tar.gz
- name: Extract cache # - name: DEBUG
run: | # run: |
tar --skip-old-files -xzvf retrodeck-cooker.tar.gz # echo "Listing folder $PWD contents"
rm -f retrodeck-cooker.tar.gz # ls -lna
# echo "Checking for version file"
# find ~ -iname version
# cat $(find ~ -iname version)
- name: DEBUG # - name: Initialize enviornment
run: | # run: |
echo "Listing folder $PWD contents" # git pull
ls -lna # git submodule init
echo "Checking for version file" # git submodule update
find ~ -iname version # sudo add-apt-repository ppa:alexlarsson/flatpak
cat $(find ~ -iname version) # sudo apt-get update
# sudo apt install flatpak flatpak-builder p7zip-full
- name: Initialize enviornment # sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
run: | # 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
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: Create Bundle - name: Create Bundle
run: | run: |
@ -156,17 +143,17 @@ jobs:
id: version id: version
run: echo "##[set-output name=version;]$(cat $(find . -name version))" run: echo "##[set-output name=version;]$(cat $(find . -name version))"
- name: DEBUG - Print version name # - name: DEBUG - Print version name
shell: bash # shell: bash
run: | # run: |
echo "DEBUG: printing version from version file" # echo "DEBUG: printing version from version file"
echo "${{ steps.version.outputs.version }}" # echo "${{ steps.version.outputs.version }}"
- name: Publish the flatpak in a new cooker release - name: Publish the flatpak in a new cooker release
uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
with: with:
#tag: "${{ steps.version.outputs.version }}" #tag: "${{ steps.version.outputs.version }}"
tag: "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}" tag: "${{ steps.generating_buildid.outputs.build-id }}"
body: | body: |
# Release Notes (Cooker) # Release Notes (Cooker)
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}. This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
@ -182,20 +169,20 @@ jobs:
repo: RetroDECK-cooker repo: RetroDECK-cooker
continue-on-error: true continue-on-error: true
- name: Compress global cache # - name: Compress global cache
run: | # run: |
touch retrodeck-cooker.tar.gz # touch retrodeck-cooker.tar.gz
rm -rf .flatpak-builder/build/*-{2,3,4,5,6} # rm -rf .flatpak-builder/build/*-{2,3,4,5,6}
find .flatpak-builder/build -xtype l -exec rm {} \; # removing dead symlinks # 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 # tar --ignore-failed-read -czvf retrodeck-cooker.tar.gz retrodeck-flatpak-cooker .flatpak-builder/build
continue-on-error: true # continue-on-error: true
- name: Upload global cache # - name: Upload global cache
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: global-cache # name: global-cache
path: retrodeck-cooker.tar.gz RetroDECK.flatpak # path: retrodeck-cooker.tar.gz RetroDECK.flatpak
continue-on-error: true # continue-on-error: true
- name: Upload RetroDECK.flatpak - name: Upload RetroDECK.flatpak
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3