add noninteractive
Some checks failed
Setup Docker Action / setup_docker (3.12.7) (push) Has been skipped
Setup Native Action / setup_native (3.12.7) (push) Failing after 23s

This commit is contained in:
hoangvv 2025-01-14 18:11:23 +07:00
parent 3a1e0f2b00
commit 1d4a711a35
2 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
name: Setup Docker Action
name: Setup Native Action
on:
push:
branches:
- main
jobs:
setup_docker:
setup_native:
runs-on: host
strategy:
matrix:

View File

@ -22,9 +22,9 @@ VERSION := community
ADDONS=${PWD}/addons,${PWD}/odoo/addons
install:
sudo apt -y update && \
sudo apt install -y build-essential python3-full python3-pip libldap2-dev libpq-dev libsasl2-dev && \
pip install -r requirements.txt
sudo DEBIAN_FRONTEND=noninteractive apt -y update && \
sudo DEBIAN_FRONTEND=noninteractive apt install -y build-essential python3-full python3-pip libldap2-dev libpq-dev libsasl2-dev && \
sudo pip install --no-input -r requirements.txt
gen_config:
${PWD}/setup/init_config.sh --native ${ADDONS}
run_server: