This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2023-08-27 21:10:13 +03:00 committed by GitHub
parent 44d5711c29
commit fec208a7cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 115 additions and 1 deletions

44
.github/workflows/amdgpu-wipe-clean.yml vendored Normal file
View File

@ -0,0 +1,44 @@
name: Wipe AMDGPU Pool Clean (Danger)
on:
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
container:
image: ghcr.io/pikaos-linux/pika-package-container:latest
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Sync Repository
run: chmod +x ./amdgpu-wipe-clean.sh && ./amdgpu-wipe-clean.sh
- name: Purge cache
uses: jakejarvis/cloudflare-purge-action@master
env:
# Zone is required by both authentication methods
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
PURGE_URLS: ${{ vars.PURGE_URLS }}

View File

@ -1,4 +1,4 @@
name: Fucking Destroy the pool (External)
name: Wipe External Pool Clean (Danger)
on:
workflow_dispatch:

44
.github/workflows/rocm-wipe-clean.yml vendored Normal file
View File

@ -0,0 +1,44 @@
name: Wipe ROCm Pool Clean (Danger)
on:
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
container:
image: ghcr.io/pikaos-linux/pika-package-container:latest
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Sync Repository
run: chmod +x ./rocm-wipe-clean.sh && ./rocm-wipe-clean.sh
- name: Purge cache
uses: jakejarvis/cloudflare-purge-action@master
env:
# Zone is required by both authentication methods
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
PURGE_URLS: ${{ vars.PURGE_URLS }}

13
amdgpu-wipe-clean.sh Normal file
View File

@ -0,0 +1,13 @@
#! /bin/bash
set -e
### In the Case of a major mishap we wipe the amdgpu pool clean and re run all repos
# Pull down existing ppa repo db files etc
mkdir -p ./output/repo
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
# Remove our All package from the pool
reprepro -C amdgpu -V --basedir ./output/repo/ removefilter lunar 'Package (% *)'
# Push the updated ppa repo to the server
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/

13
rocm-wipe-clean.sh Normal file
View File

@ -0,0 +1,13 @@
#! /bin/bash
set -e
### In the Case of a major mishap we wipe the rocm pool clean and re run all repos
# Pull down existing ppa repo db files etc
mkdir -p ./output/repo
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
# Remove our All package from the pool
reprepro -C rocm -V --basedir ./output/repo/ removefilter lunar 'Package (% *)'
# Push the updated ppa repo to the server
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/