fix main
This commit is contained in:
parent
b42f078f85
commit
4f045f1d0f
5
.github/workflows/build-canaryv3.yml
vendored
5
.github/workflows/build-canaryv3.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/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
|
||||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@ -2,7 +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)
|
||||||
dest_dir = $(CURDIR)/debian/linux-firmware
|
dest_dir = $(CURDIR)/debian/linux-firmware
|
||||||
firmware_dir = $(dest_dir)/lib/firmware
|
firmware_dir = $(dest_dir)/lib/firmware
|
||||||
license_dir = $(dest_dir)/usr/share/doc/linux-firmware/licenses
|
license_dir = $(dest_dir)/usr/share/doc/linux-firmware/licenses
|
||||||
|
@ -4,14 +4,9 @@ set -e
|
|||||||
|
|
||||||
VERSION="$(date '+%Y%m%d').git"
|
VERSION="$(date '+%Y%m%d').git"
|
||||||
|
|
||||||
export DEBIAN_FRONTEND="noninteractive"
|
source ./pika-build-config.sh
|
||||||
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"
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||||||
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
|
# Clone Upstream
|
||||||
#git clone https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/
|
#git clone https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/
|
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
|
Loading…
Reference in New Issue
Block a user