mirror of
https://github.com/Retropex/raspiblitz.git
synced 2025-05-12 19:20:48 +02:00
local build fixes (#4260)
* run the local build uninterrupted * fix local build amd64-lean-desktop-uefi-image
This commit is contained in:
parent
b57aba6acf
commit
df210e6e45
4
Makefile
4
Makefile
@ -10,7 +10,7 @@ amd64-lean-desktop-uefi-image:
|
|||||||
--github_user $(GITHUB_ACTOR) \
|
--github_user $(GITHUB_ACTOR) \
|
||||||
--branch $(GITHUB_HEAD_REF) \
|
--branch $(GITHUB_HEAD_REF) \
|
||||||
--preseed_file preseed.cfg \
|
--preseed_file preseed.cfg \
|
||||||
--boot uefi\
|
--boot uefi \
|
||||||
--desktop gnome
|
--desktop gnome
|
||||||
|
|
||||||
# Compute the checksum of the qemu image
|
# Compute the checksum of the qemu image
|
||||||
@ -62,7 +62,7 @@ amd64-fatpack-desktop-uefi-image:
|
|||||||
--github_user $(GITHUB_ACTOR) \
|
--github_user $(GITHUB_ACTOR) \
|
||||||
--branch $(GITHUB_HEAD_REF) \
|
--branch $(GITHUB_HEAD_REF) \
|
||||||
--preseed_file preseed.cfg \
|
--preseed_file preseed.cfg \
|
||||||
--boot uefi\
|
--boot uefi \
|
||||||
--desktop gnome
|
--desktop gnome
|
||||||
|
|
||||||
# Compute the checksum of the qemu image
|
# Compute the checksum of the qemu image
|
||||||
|
@ -5,7 +5,7 @@ sudo apt-get update
|
|||||||
# install packer
|
# install packer
|
||||||
if ! packer version 2>/dev/null; then
|
if ! packer version 2>/dev/null; then
|
||||||
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
|
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
|
||||||
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
|
sudo apt-add-repository -y "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
echo -e "\nInstalling packer..."
|
echo -e "\nInstalling packer..."
|
||||||
sudo apt-get install -y packer
|
sudo apt-get install -y packer
|
||||||
@ -19,6 +19,7 @@ sudo apt-get update
|
|||||||
sudo apt-get install -y qemu-system
|
sudo apt-get install -y qemu-system
|
||||||
|
|
||||||
# set vars
|
# set vars
|
||||||
|
echo "# Setting the variables: $*"
|
||||||
source ../set_variables.sh
|
source ../set_variables.sh
|
||||||
set_variables "$@"
|
set_variables "$@"
|
||||||
|
|
||||||
|
@ -58,6 +58,7 @@ go mod download
|
|||||||
go build || exit 1
|
go build || exit 1
|
||||||
|
|
||||||
# set vars
|
# set vars
|
||||||
|
echo "# Setting the variables: $*"
|
||||||
source ../set_variables.sh
|
source ../set_variables.sh
|
||||||
set_variables "$@"
|
set_variables "$@"
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
# set vars
|
# set vars
|
||||||
|
echo "# Setting the variables: $*"
|
||||||
source ../set_variables.sh
|
source ../set_variables.sh
|
||||||
set_variables "$@"
|
set_variables "$@"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user