mirror of https://github.com/armbian/build.git
Force host pre-preaprepare when running via action
This commit is contained in:
parent
5216e732cd
commit
90cc62a4cb
|
|
@ -25,7 +25,7 @@ inputs:
|
|||
armbian_branch:
|
||||
description: "Choose framework branch"
|
||||
required: false
|
||||
default: "main"
|
||||
default: "prepre"
|
||||
|
||||
armbian_kernel_branch:
|
||||
description: "Choose kernel branch"
|
||||
|
|
@ -173,6 +173,10 @@ runs:
|
|||
cd build
|
||||
|
||||
# execute build command
|
||||
|
||||
sudo ./compile.sh requirements
|
||||
sudo chown -R $USER:$USER .
|
||||
|
||||
./compile.sh "${{ inputs.armbian_target }}" \
|
||||
REVISION="${{ env.ARMBIAN_VERSION }}" \
|
||||
BOARD="${{ inputs.armbian_board }}" \
|
||||
|
|
|
|||
|
|
@ -242,7 +242,7 @@ function docker_cli_prepare_dockerfile() {
|
|||
# Prepare some dependencies; these will be used on the Dockerfile
|
||||
|
||||
# @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..
|
||||
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`
|
||||
ntpsec-ntpdate #this is a more secure ntpdate
|
||||
patchutils pkg-config pv
|
||||
"qemu-user-static" "arch-test"
|
||||
qemu-user-static
|
||||
arch-test
|
||||
rsync
|
||||
swig # swig is needed for some u-boot's. example: "bananapi.conf"
|
||||
u-boot-tools
|
||||
|
|
|
|||
Loading…
Reference in New Issue