fix main
This commit is contained in:
parent
639603a025
commit
69a78648ba
1
.github/ build-canary-v3
vendored
Normal file
1
.github/ build-canary-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
7
.github/workflows/build-canaryv3.yml
vendored
7
.github/workflows/build-canaryv3.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
options: --privileged -it
|
options: --privileged -it
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
uses: shimataro/ssh-key-action@v2
|
uses: shimataro/ssh-key-action@v2
|
||||||
@ -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
|
||||||
|
5
.github/workflows/build-nestv3.yml
vendored
5
.github/workflows/build-nestv3.yml
vendored
@ -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
|
||||||
|
5
.github/workflows/release-canaryv3.yml
vendored
5
.github/workflows/release-canaryv3.yml
vendored
@ -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
|
||||||
|
5
.github/workflows/release-nestv3.yml
vendored
5
.github/workflows/release-nestv3.yml
vendored
@ -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
|
||||||
|
29
main.sh
Executable file
29
main.sh
Executable 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/
|
34
mainv3.sh
34
mainv3.sh
@ -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/
|
|
Loading…
Reference in New Issue
Block a user