Skip to content

Commit

Permalink
32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmicFusion authored Jul 21, 2024
1 parent 455f508 commit 607ac92
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 5 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/release-i386.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: PikaOS Package Release (i386)

on:
workflow_dispatch

jobs:
build:
runs-on: self-hosted
container:
image: ghcr.io/pikaos-linux/pika-i386-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: Update apt cache
run: apt-get update -y

- name: Build Package
run: ./main.sh

- name: Release Package
run: ./release.sh

10 changes: 5 additions & 5 deletions pika-abi-bridge/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Depends: ${misc:Depends},
qtbase-abi-5-15-14,
qtwayland-client-abi-5-15-14,
qtdeclarative-abi-5-15-13
Provides: qtbase-abi-5-15-10,
qtwayland-client-abi-5-15-10,
qtdeclarative-abi-5-15-10
qtbase-abi-5-15-13,
qtwayland-client-abi-5-15-13,
Provides: qtbase-abi-5-15-10 (= 5.15.10-101pika1),
qtwayland-client-abi-5-15-10 (= 5.15.10-101pika1),
qtdeclarative-abi-5-15-10 (= 5.15.10-101pika1),
qtbase-abi-5-15-13 (= 5.15.13-101pika1),
qtwayland-client-abi-5-15-13 (= 5.15.13-101pika1),
Description: QT ABI Bridge for PikaOS builder

0 comments on commit 607ac92

Please sign in to comment.