fix main
This commit is contained in:
parent
30c04db5fa
commit
1e3dc80ef9
2
.github/workflows/build-canaryv3.yml
vendored
2
.github/workflows/build-canaryv3.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Build Package
|
||||
run: ./mainv3.sh
|
||||
|
2
.github/workflows/build-nestv3.yml
vendored
2
.github/workflows/build-nestv3.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Build Package
|
||||
run: ./mainv3.sh
|
||||
|
2
.github/workflows/release-canaryv3.yml
vendored
2
.github/workflows/release-canaryv3.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Build Package
|
||||
run: ./mainv3.sh
|
||||
|
2
.github/workflows/release-nestv3.yml
vendored
2
.github/workflows/release-nestv3.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
if_key_exists: replace
|
||||
|
||||
- name: Update APT Cache
|
||||
run: apt-get update
|
||||
run: apt-get update -y
|
||||
|
||||
- name: Build Package
|
||||
run: ./mainv3.sh
|
||||
|
@ -1,9 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
VERSION="0.384"
|
||||
|
||||
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"
|
||||
@ -23,7 +23,7 @@ cd ./hwdata
|
||||
apt-get build-dep ./ -y
|
||||
|
||||
# Build package
|
||||
LOGNAME=root dh_make --createorig -y -l -p hwdata_"$VERSION" || echo "dh-make didn't go clean"
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user