fix main
This commit is contained in:
parent
440305508e
commit
400dc77fcb
5
.github/workflows/build-canaryi386.yml
vendored
5
.github/workflows/build-canaryi386.yml
vendored
@ -30,5 +30,8 @@ jobs:
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./maini386.sh
|
||||
run: ./main.sh
|
||||
|
5
.github/workflows/build-canaryv3.yml
vendored
5
.github/workflows/build-canaryv3.yml
vendored
@ -30,5 +30,8 @@ jobs:
|
||||
- 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
|
||||
|
5
.github/workflows/build-nesti386.yml
vendored
5
.github/workflows/build-nesti386.yml
vendored
@ -30,5 +30,8 @@ jobs:
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./maini386.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
|
||||
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
|
||||
|
5
.github/workflows/release-canaryi386.yml
vendored
5
.github/workflows/release-canaryi386.yml
vendored
@ -30,8 +30,11 @@ jobs:
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./maini386.sh
|
||||
run: ./main.sh
|
||||
|
||||
- name: Release Package
|
||||
run: ./release.sh
|
||||
|
5
.github/workflows/release-canaryv3.yml
vendored
5
.github/workflows/release-canaryv3.yml
vendored
@ -30,8 +30,11 @@ jobs:
|
||||
- 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
|
||||
|
5
.github/workflows/release-nesti386.yml
vendored
5
.github/workflows/release-nesti386.yml
vendored
@ -30,8 +30,11 @@ jobs:
|
||||
- name: Update APT Cache
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Set Build Config
|
||||
run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh
|
||||
|
||||
- name: Build Package
|
||||
run: ./maini386.sh
|
||||
run: ./main.sh
|
||||
|
||||
- name: Release Package
|
||||
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
|
||||
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
|
||||
|
1
debian/rules
vendored
1
debian/rules
vendored
@ -3,6 +3,7 @@
|
||||
## See debhelper(7) (uncomment to enable).
|
||||
## Output every command that modifies files on the build system.
|
||||
export DH_VERBOSE = 1
|
||||
export PIKA_BUILD_ARCH = $(shell cat pika-build-arch)
|
||||
|
||||
## === the chain of command ===
|
||||
## debuild runs a chain of dh functions in the following order:
|
||||
|
@ -2,11 +2,11 @@
|
||||
|
||||
set -e
|
||||
|
||||
VERSION="1.0"
|
||||
source ./pika-build-config.sh
|
||||
|
||||
export DEBIAN_FRONTEND="noninteractive"
|
||||
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
||||
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||||
|
||||
VERSION="1.0"
|
||||
|
||||
# Clone Upstream
|
||||
mkdir -p ./src-pkg-name
|
31
mainv3.sh
31
mainv3.sh
@ -1,31 +0,0 @@
|
||||
#! /bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
VERSION="1.0"
|
||||
|
||||
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
|
||||
mkdir -p ./src-pkg-name
|
||||
cp -rvf ./debian ./src-pkg-name/
|
||||
cd ./src-pkg-name/
|
||||
|
||||
# Get build deps
|
||||
LOGNAME=root dh_make --createorig -y -l -p src-pkg-name_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
||||
apt-get build-dep ./ -y
|
||||
|
||||
# Build package
|
||||
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
9
pika-build-config/amd64-v3.sh
Executable 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
|
4
pika-build-config/i386.sh
Executable file
4
pika-build-config/i386.sh
Executable file
@ -0,0 +1,4 @@
|
||||
PIKA_BUILD_ARCH="i386"
|
||||
DEBIAN_FRONTEND="noninteractive"
|
||||
DEB_BUILD_OPTIONS="nocheck notest terse"
|
||||
DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
Loading…
Reference in New Issue
Block a user