This commit is contained in:
Ward from fusion-voyager-3 2024-07-24 14:05:08 +03:00
parent 639603a025
commit 69a78648ba
7 changed files with 51 additions and 43 deletions

1
.github/ build-canary-v3 vendored Normal file
View File

@ -0,0 +1 @@
1

View File

@ -17,7 +17,7 @@ jobs:
options: --privileged -it
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
@ -26,9 +26,12 @@ jobs:
name: id_rsa
known_hosts: ${{ vars.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/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./mainv3.sh
run: ./main.sh

View File

@ -26,9 +26,12 @@ jobs:
name: id_rsa
known_hosts: ${{ vars.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/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./mainv3.sh
run: ./main.sh

View File

@ -26,12 +26,15 @@ jobs:
name: id_rsa
known_hosts: ${{ vars.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/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./mainv3.sh
run: ./main.sh
- name: Release Package
run: ./release.sh

View File

@ -26,12 +26,15 @@ jobs:
name: id_rsa
known_hosts: ${{ vars.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/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./mainv3.sh
run: ./main.sh
- name: Release Package
run: ./release.sh

29
main.sh Executable file
View File

@ -0,0 +1,29 @@
#! /bin/bash
set -e
VERSION="0.11.4.ferreogit"
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
# Clone Upstream
git clone https://github.com/ferrreo/booster.git
cp -rvf ./debian ./booster/
cp -vf ./Makefile ./booster/
cp -vf ./booster.yml ./booster/
cp -vf ./update-initramfs ./booster/
cd ./booster
# Get build deps
apt-get build-dep ./ -y
# Build package
LOGNAME=root dh_make --createorig -y -l -p booster_"$VERSION" || echo "dh-make: Ignoring Last Error"
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/

View File

@ -1,34 +0,0 @@
#! /bin/bash
set -e
VERSION="0.11.4.ferreogit"
export DEBIAN_FRONTEND="noninteractive"
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_BUILD_OPTIONS="nocheck notest terse"
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
# Clone Upstream
git clone https://github.com/ferrreo/booster.git
cp -rvf ./debian ./booster/
cp -vf ./Makefile ./booster/
cp -vf ./booster.yml ./booster/
cp -vf ./update-initramfs ./booster/
cd ./booster
# Get build deps
apt-get build-dep ./ -y
# Build package
LOGNAME=root dh_make --createorig -y -l -p booster_"$VERSION" || echo "dh-make: Ignoring Last Error"
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/