generated from general-packages/pika-pkg-template
try pbuilder on i386
This commit is contained in:
parent
d104b1aa6a
commit
f93189d76e
40
.github/workflows/i386-native.yml
vendored
Normal file
40
.github/workflows/i386-native.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: PikaOS Upstream Package Build & Release (i386)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'pika-build-config/i386.sh'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: upstream-package
|
||||
container:
|
||||
image: ghcr.io/pikaos-linux/pika-base-debian-container:i386
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- 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: Set Build Config
|
||||
run: cp -vf ./pika-build-config/i386setup.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
||||
|
||||
- name: Release Package
|
||||
run: ./release.sh
|
10
.github/workflows/i386.yml
vendored
10
.github/workflows/i386.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
||||
build:
|
||||
runs-on: upstream-package
|
||||
container:
|
||||
image: ghcr.io/pikaos-linux/pika-base-debian-container:i386
|
||||
image: ghcr.io/pikaos-linux/pika-base-debian-container:latest
|
||||
volumes:
|
||||
- /proc:/proc
|
||||
options: --privileged -it
|
||||
@ -27,14 +27,8 @@ jobs:
|
||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/i386setup.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./main.sh
|
||||
run: ./main_pbuilder.sh
|
||||
|
||||
- name: Release Package
|
||||
run: ./release.sh
|
||||
|
23
main_pbuilder.sh
Executable file
23
main_pbuilder.sh
Executable file
@ -0,0 +1,23 @@
|
||||
#! /bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
. ./pika-build-config.sh
|
||||
|
||||
VERSION="$PIKA_PACKAGE_VERSION"
|
||||
|
||||
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||||
|
||||
# Get source code
|
||||
if [[ "$PIKA_PACKAGE_NAME" == *-dmo ]];
|
||||
then
|
||||
apt-get source "$PIKA_PACKAGE_NAME" -y
|
||||
else
|
||||
apt-get source "$PIKA_PACKAGE_NAME=$VERSION" -y
|
||||
fi
|
||||
|
||||
pika-pbuilder-i386-build ./*.dsc
|
||||
|
||||
# Move the debs to output
|
||||
mkdir -p ./output
|
||||
mv ./*.deb ./output/
|
Loading…
Reference in New Issue
Block a user