mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-23 14:35:39 +00:00
WORKFLOW: self-hosted, clode cleanup
This commit is contained in:
parent
ae2fc54619
commit
23e0ebe755
104
.github/workflows/cooker-selfhosted.yml
vendored
104
.github/workflows/cooker-selfhosted.yml
vendored
|
@ -32,21 +32,6 @@ jobs:
|
|||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
# - name: Download global cache
|
||||
# uses: dawidd6/action-download-artifact@v2
|
||||
# with:
|
||||
# workflow: cooker.yml
|
||||
# name: global-cache
|
||||
# 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
|
||||
# continue-on-error: true
|
||||
|
||||
- name: Initialize enviornment
|
||||
run: |
|
||||
git pull
|
||||
|
@ -61,89 +46,15 @@ jobs:
|
|||
run: |
|
||||
flatpak-builder --build-only --user --force-clean --repo=~/local ~/retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
|
||||
|
||||
# - name: Compress 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
|
||||
|
||||
# - name: Upload build specific cache
|
||||
# uses: actions/upload-artifact@v3
|
||||
# with:
|
||||
# name: "${{ steps.generating_buildid.outputs.build-id }}"
|
||||
# path: retrodeck-cooker.tar.gz
|
||||
|
||||
# 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
|
||||
|
||||
# outputs:
|
||||
# buildID: "${{ steps.generating_buildid.outputs.build-id }}"
|
||||
|
||||
# - uses: actions/checkout@v3
|
||||
|
||||
# - name: Download build specific cache
|
||||
# uses: actions/download-artifact@v2
|
||||
# with:
|
||||
# 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
|
||||
|
||||
# - 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
|
||||
# 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: Create Bundle
|
||||
run: |
|
||||
flatpak-builder --user --force-clean --repo=~/local ~/retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
|
||||
flatpak build-bundle $GITHUB_WORKSPACE/local RetroDECK.flatpak net.retrodeck.retrodeck
|
||||
|
||||
# - name: Extract branch name
|
||||
# shell: bash
|
||||
# run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
|
||||
# id: extract_branch
|
||||
|
||||
- name: Read version from version file
|
||||
id: version
|
||||
run: echo "##[set-output name=version;]$(cat $(find . -name version))"
|
||||
|
||||
# - name: DEBUG - Print version name
|
||||
# shell: bash
|
||||
# run: |
|
||||
# echo "DEBUG: printing version from version file"
|
||||
# echo "${{ steps.version.outputs.version }}"
|
||||
|
||||
- name: Publish the flatpak in a new cooker release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
|
@ -164,21 +75,6 @@ jobs:
|
|||
repo: RetroDECK-cooker
|
||||
continue-on-error: true
|
||||
|
||||
# - 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
|
||||
|
||||
# In case it cannot publish the release at least it's probiding the flatpak file for creating a manual release
|
||||
- name: Upload RetroDECK.flatpak
|
||||
uses: actions/upload-artifact@v3
|
||||
|
|
Loading…
Reference in a new issue