mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Force host pre-preaprepare when running via action
This commit is contained in:
@@ -25,7 +25,7 @@ inputs:
|
|||||||
armbian_branch:
|
armbian_branch:
|
||||||
description: "Choose framework branch"
|
description: "Choose framework branch"
|
||||||
required: false
|
required: false
|
||||||
default: "main"
|
default: "prepre"
|
||||||
|
|
||||||
armbian_kernel_branch:
|
armbian_kernel_branch:
|
||||||
description: "Choose kernel branch"
|
description: "Choose kernel branch"
|
||||||
@@ -173,6 +173,10 @@ runs:
|
|||||||
cd build
|
cd build
|
||||||
|
|
||||||
# execute build command
|
# execute build command
|
||||||
|
|
||||||
|
sudo ./compile.sh requirements
|
||||||
|
sudo chown -R $USER:$USER .
|
||||||
|
|
||||||
./compile.sh "${{ inputs.armbian_target }}" \
|
./compile.sh "${{ inputs.armbian_target }}" \
|
||||||
REVISION="${{ env.ARMBIAN_VERSION }}" \
|
REVISION="${{ env.ARMBIAN_VERSION }}" \
|
||||||
BOARD="${{ inputs.armbian_board }}" \
|
BOARD="${{ inputs.armbian_board }}" \
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ function docker_cli_prepare_dockerfile() {
|
|||||||
# Prepare some dependencies; these will be used on the Dockerfile
|
# Prepare some dependencies; these will be used on the Dockerfile
|
||||||
|
|
||||||
# @TODO: this might be unified with prepare_basic_deps
|
# @TODO: this might be unified with prepare_basic_deps
|
||||||
declare -g -a BASIC_DEPS=("bash" "git" "psmisc" "uuid-runtime")
|
declare -g -a BASIC_DEPS=("bash" "git" "psmisc" "uuid-runtime" "qemu-user-static")
|
||||||
|
|
||||||
# initialize the extension manager; enable all extensions; only once..
|
# initialize the extension manager; enable all extensions; only once..
|
||||||
if [[ "${docker_prepare_cli_skip_exts:-no}" != "yes" ]]; then
|
if [[ "${docker_prepare_cli_skip_exts:-no}" != "yes" ]]; then
|
||||||
|
|||||||
@@ -196,7 +196,8 @@ function adaptative_prepare_host_dependencies() {
|
|||||||
ncurses-base ncurses-term # for `make menuconfig`
|
ncurses-base ncurses-term # for `make menuconfig`
|
||||||
ntpsec-ntpdate #this is a more secure ntpdate
|
ntpsec-ntpdate #this is a more secure ntpdate
|
||||||
patchutils pkg-config pv
|
patchutils pkg-config pv
|
||||||
"qemu-user-static" "arch-test"
|
qemu-user-static
|
||||||
|
arch-test
|
||||||
rsync
|
rsync
|
||||||
swig # swig is needed for some u-boot's. example: "bananapi.conf"
|
swig # swig is needed for some u-boot's. example: "bananapi.conf"
|
||||||
u-boot-tools
|
u-boot-tools
|
||||||
|
|||||||
Reference in New Issue
Block a user