mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
Removed unused pipelines
This commit is contained in:
parent
d4f82d74ce
commit
3b941155cf
62
.github/workflows/removed/TEST_release_info.yml
vendored
Normal file
62
.github/workflows/removed/TEST_release_info.yml
vendored
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
name: TEST_release_info
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- .github/workflows/TEST_release_info.yml
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
Building_RetroDECK:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Generate build ID
|
||||||
|
id: generating_buildid
|
||||||
|
run: echo "##[set-output name=build-id;]$(echo "$( git rev-parse --short HEAD )")"
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Initialize enviornment
|
||||||
|
run: |
|
||||||
|
git pull
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet appstream-util
|
||||||
|
|
||||||
|
- name: Validating the appdata
|
||||||
|
run: appstream-util validate "net.retrodeck.retrodeck.appdata.xml"
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- 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"
|
||||||
|
|
||||||
|
- name: Publish the flatpak in a new release
|
||||||
|
uses: ncipollo/release-action@v1
|
||||||
|
env:
|
||||||
|
REL_VER: ${{ env.REL_VER }}
|
||||||
|
with:
|
||||||
|
tag: ${{ env.REL_VER }}
|
||||||
|
name: "RetroDECK v${{ env.REL_VER }}"
|
||||||
|
bodyFile: "body.md"
|
||||||
|
#artifacts: "RetroDECK.flatpak,RetroDECK-Artifact.tar.gz"
|
||||||
|
allowUpdates: true
|
||||||
|
draft: true
|
||||||
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
||||||
|
repo: RetroDECK
|
||||||
|
#continue-on-error: true
|
205
.github/workflows/removed/cooker.yml
vendored
Normal file
205
.github/workflows/removed/cooker.yml
vendored
Normal file
|
@ -0,0 +1,205 @@
|
||||||
|
name: cooker
|
||||||
|
|
||||||
|
on:
|
||||||
|
# push:
|
||||||
|
# branches:
|
||||||
|
# - cooker*
|
||||||
|
# pull_request:
|
||||||
|
# branches:
|
||||||
|
# - cooker*
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
Job1_-_Building_P1:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- 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
|
||||||
|
id: generating_buildid
|
||||||
|
run: echo "##[set-output name=build-id;]$(echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}")"
|
||||||
|
|
||||||
|
- 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: 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: Buld part 1 - Until melonds
|
||||||
|
run: |
|
||||||
|
sudo flatpak-builder --build-only --stop-at=melonds --user --force-clean --repo=${GITHUB_WORKSPACE}/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 }}"
|
||||||
|
|
||||||
|
Job2_-_Build_P2_and_publish:
|
||||||
|
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: 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: |
|
||||||
|
sudo flatpak-builder --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
|
||||||
|
sudo flatpak build-bundle $GITHUB_WORKSPACE/local RetroDECK.flatpak net.retrodeck.retrodeck
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
|
- 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:
|
||||||
|
#tag: "${{ steps.version.outputs.version }}"
|
||||||
|
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}}.
|
||||||
|
|
||||||
|
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
|
||||||
|
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
|
||||||
|
|
||||||
|
- name: Upload RetroDECK.flatpak
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: retrodeck-flatpak
|
||||||
|
path: RetroDECK.flatpak
|
||||||
|
continue-on-error: true
|
88
.github/workflows/removed/flathub_push_cooker.yml
vendored
Normal file
88
.github/workflows/removed/flathub_push_cooker.yml
vendored
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
|
||||||
|
name: PUSH-cooker-flathub
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
Pushing_cooker_into_flathub:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Pushing
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
|
||||||
|
# EDITABLES:
|
||||||
|
rd_branch=${GITHUB_REF_NAME}
|
||||||
|
echo $rd_branch
|
||||||
|
gits_folder="${GITHUB_WORKSPACE}/gits" # without last /
|
||||||
|
|
||||||
|
mkdir -vp $gits_folder
|
||||||
|
cd $gits_folder
|
||||||
|
if [ -d flathub ]; then
|
||||||
|
rm -rf flathub
|
||||||
|
fi
|
||||||
|
git clone --recursive https://github.com/flathub/net.retrodeck.retrodeck.git flathub
|
||||||
|
cd $gits_folder
|
||||||
|
git clone --recursive https://github.com/XargonWan/RetroDECK RetroDECK
|
||||||
|
cd $gits_folder/RetroDECK
|
||||||
|
|
||||||
|
# NON-EDITABLES
|
||||||
|
#relname="$rd_branch-"$(date +%d%m%y.%H%M)
|
||||||
|
relname="cooker-"$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
git checkout $rd_branch
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
|
# NOTE: the only linked submodules are: rd-submodules/retroarch
|
||||||
|
# these must be included in the exclusion list as they must be redownloaded
|
||||||
|
#sync -rav --progress --exclude={'res/screenshots/','shared-modules/','rd-submodules/retroarch','.git/','docs','retrodeck-flatpak/','retrodeck-flatpak-cooker/','.flatpak-builder/'} ~/RetroDECK/ ~/flathub/
|
||||||
|
|
||||||
|
cd $gits_folder/flathub
|
||||||
|
|
||||||
|
git checkout -b $relname
|
||||||
|
|
||||||
|
git rm -rf *
|
||||||
|
git clean -fxd # restroing git index
|
||||||
|
|
||||||
|
# Copying only a few files as the others are cloned by git in retrodeck.sh
|
||||||
|
cd $gits_folder/RetroDECK
|
||||||
|
cp -rf \
|
||||||
|
'flathub.json' \
|
||||||
|
'LICENSE' \
|
||||||
|
'flathub.yml' \
|
||||||
|
'README.md' \
|
||||||
|
$gits_folder/flathub/
|
||||||
|
|
||||||
|
cd $gits_folder/flathub
|
||||||
|
ls -lah
|
||||||
|
|
||||||
|
# manipulating manifest
|
||||||
|
mv flathub.yml net.retrodeck.retrodeck.yml
|
||||||
|
|
||||||
|
# Getting latest release name
|
||||||
|
# version=$(\
|
||||||
|
# curl -sL \
|
||||||
|
# -H "Accept: application/vnd.github+json" \
|
||||||
|
# -H "Authorization: Bearer ${{ secrets.TRIGGER_BUILD_TOKEN }}" \
|
||||||
|
# https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases \
|
||||||
|
# | jq .[0].tag_name \
|
||||||
|
# | tr -d \" \
|
||||||
|
# )
|
||||||
|
|
||||||
|
sha=$(curl -sL https://artifacts.retrodeck.net/artifacts/RetroDECK-Artifact.sha)
|
||||||
|
|
||||||
|
sed -i "s#__SHA__#$sha#g" net.retrodeck.retrodeck.yml
|
||||||
|
|
||||||
|
echo -e "Resulting manifest:\n"
|
||||||
|
cat net.retrodeck.retrodeck.yml
|
||||||
|
|
||||||
|
git config --global user.name "${{ secrets.GITNAME }}"
|
||||||
|
git config --global user.email "${{ secrets.GITMAIL }}"
|
||||||
|
|
||||||
|
git add *
|
||||||
|
git commit -m "Updated flathub/net.retrodeck.retrodeck from RetroDECK/$rd_branch"
|
||||||
|
|
||||||
|
git remote -v
|
||||||
|
git push --force https://${{ secrets.TRIGGER_BUILD_TOKEN }}@github.com/flathub/net.retrodeck.retrodeck.git $relname
|
188
.github/workflows/removed/main.yml
vendored
Normal file
188
.github/workflows/removed/main.yml
vendored
Normal file
|
@ -0,0 +1,188 @@
|
||||||
|
name: main
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Triggers the workflow on push or pull request events but only for the main branch
|
||||||
|
# push:
|
||||||
|
# branches:
|
||||||
|
# - main
|
||||||
|
# pull_request:
|
||||||
|
# branches:
|
||||||
|
# - main
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
Job1_-_Building_P1:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- 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
|
||||||
|
id: generating_buildid
|
||||||
|
run: echo "##[set-output name=build-id;]$(echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}")"
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Download global cache
|
||||||
|
uses: dawidd6/action-download-artifact@v2
|
||||||
|
with:
|
||||||
|
workflow: main.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-main.tar.gz
|
||||||
|
rm -f retrodeck-main.tar.gz
|
||||||
|
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
|
||||||
|
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
|
||||||
|
run: |
|
||||||
|
sudo flatpak-builder --build-only --stop-at=melonds --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-main net.retrodeck.retrodeck.yml
|
||||||
|
|
||||||
|
- name: Compress cache
|
||||||
|
run: |
|
||||||
|
touch retrodeck-main.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-main.tar.gz retrodeck-flatpak-main .flatpak-builder/build
|
||||||
|
|
||||||
|
- name: Upload build specific cache
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: "${{ steps.generating_buildid.outputs.build-id }}"
|
||||||
|
path: retrodeck-main.tar.gz
|
||||||
|
|
||||||
|
# this is done to speed up the things now, it may be removed later
|
||||||
|
- name: Compress global cache
|
||||||
|
run: |
|
||||||
|
touch retrodeck-main.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-main.tar.gz retrodeck-flatpak-main .flatpak-builder/build
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Upload global cache
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: global-cache
|
||||||
|
path: retrodeck-main.tar.gz RetroDECK.flatpak
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
buildID: "${{ steps.generating_buildid.outputs.build-id }}"
|
||||||
|
|
||||||
|
Job2_-_Build_P2_and_publish:
|
||||||
|
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: Extract cache
|
||||||
|
run: |
|
||||||
|
tar --skip-old-files -xzvf retrodeck-main.tar.gz
|
||||||
|
rm -f retrodeck-main.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: |
|
||||||
|
sudo flatpak-builder --user --force-clean --repo=${GITHUB_WORKSPACE}/local retrodeck-flatpak-main net.retrodeck.retrodeck.yml
|
||||||
|
sudo flatpak build-bundle $GITHUB_WORKSPACE/local RetroDECK.flatpak net.retrodeck.retrodeck
|
||||||
|
|
||||||
|
- name: Read version from version file
|
||||||
|
id: version
|
||||||
|
run: echo "##[set-output name=version;]$(cat $(find . -name version))"
|
||||||
|
|
||||||
|
- name: Publish the flatpak in a new main release
|
||||||
|
uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
#tag: "${{ steps.version.outputs.version }}"
|
||||||
|
#tag: "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}"
|
||||||
|
tag: "0.4.0b"
|
||||||
|
body: |
|
||||||
|
# Release Notes (main)
|
||||||
|
|
||||||
|
artifacts: "RetroDECK.flatpak"
|
||||||
|
allowUpdates: true
|
||||||
|
prerelease: true
|
||||||
|
draft: true
|
||||||
|
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
||||||
|
repo: RetroDECK-main
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Compress global cache
|
||||||
|
run: |
|
||||||
|
touch retrodeck-main.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-main.tar.gz retrodeck-flatpak-main .flatpak-builder/build
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Upload global cache
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: global-cache
|
||||||
|
path: retrodeck-main.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
|
22
.github/workflows/removed/remove-artifacts.yml
vendored
Normal file
22
.github/workflows/removed/remove-artifacts.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: Remove-artifacts
|
||||||
|
|
||||||
|
on:
|
||||||
|
#schedule:
|
||||||
|
# Every day at 1am
|
||||||
|
# - cron: '0 1 * * *'
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
remove-old-artifacts:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Remove old artifacts
|
||||||
|
uses: c-hive/gha-remove-artifacts@v1
|
||||||
|
with:
|
||||||
|
age: '2 seconds' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js
|
||||||
|
# Optional inputs
|
||||||
|
# skip-tags: true
|
||||||
|
# skip-recent: 5
|
Loading…
Reference in a new issue