This commit is contained in:
Ward from fusion-voyager-3 2024-07-24 14:00:05 +03:00
parent 9b8f2aa9f5
commit 79f0ccf760
8 changed files with 53 additions and 36 deletions

View File

@ -30,5 +30,8 @@ jobs:
- name: Update APT Cache - name: Update APT Cache
run: apt-get update -y 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 - name: Build Package
run: ./mainv3.sh run: ./main.sh

View File

@ -30,5 +30,8 @@ jobs:
- name: Update APT Cache - name: Update APT Cache
run: apt-get update -y 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 - name: Build Package
run: ./mainv3.sh run: ./main.sh

View File

@ -30,8 +30,11 @@ jobs:
- name: Update APT Cache - name: Update APT Cache
run: apt-get update -y 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 - name: Build Package
run: ./mainv3.sh run: ./main.sh
- name: Release Package - name: Release Package
run: ./release.sh run: ./release.sh

View File

@ -30,8 +30,11 @@ jobs:
- name: Update APT Cache - name: Update APT Cache
run: apt-get update -y 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 - name: Build Package
run: ./mainv3.sh run: ./main.sh
- name: Release Package - name: Release Package
run: ./release.sh run: ./release.sh

1
debian/rules vendored
View File

@ -2,6 +2,7 @@
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1 #export DH_VERBOSE=1
export PIKA_BUILD_ARCH = $(shell cat pika-build-arch)
override_dh clean: override_dh clean:
echo "disabled" echo "disabled"

27
main.sh Executable file
View File

@ -0,0 +1,27 @@
#! /bin/bash
set -e
VERSION="0.384"
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
# Clone Upstream
git clone https://github.com/vcrhonek/hwdata -b v"$VERSION"
find . -type f ! -path '*' -exec sed -i 's#/usr/bin/env\ python#/usr/bin/env\ python3#' {} \;
cp -rvf ./debian ./hwdata/
cd ./hwdata
# Get build deps
apt-get build-dep ./ -y
# Build package
LOGNAME=root dh_make --createorig -y -l -p hwdata_"$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,32 +0,0 @@
#! /bin/bash
set -e
VERSION="0.384"
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/vcrhonek/hwdata -b v"$VERSION"
find . -type f ! -path '*' -exec sed -i 's#/usr/bin/env\ python#/usr/bin/env\ python3#' {} \;
cp -rvf ./debian ./hwdata/
cd ./hwdata
# Get build deps
apt-get build-dep ./ -y
# Build package
LOGNAME=root dh_make --createorig -y -l -p hwdata_"$VERSION" || echo "dh-make: Ignoring Last Error"
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/

9
pika-build-config/amd64-v3.sh Executable file
View File

@ -0,0 +1,9 @@
PIKA_BUILD_ARCH="amd64-v3"
DEBIAN_FRONTEND="noninteractive"
DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
DEB_BUILD_OPTIONS="nocheck notest terse"
DPKG_GENSYMBOLS_CHECK_LEVEL=0