Lines Matching +full:- +full:- +full:disable +full:- +full:gnutls
9 # In Jenkins configure the git SCM 'Additional Behaviours', 'check-out to a sub
15 # WORKSPACE=$PWD ~/openbmc-build-scripts/qemu-build.sh
30 #set -x
33 http_proxy=${http_proxy:-}
35 if [ -z ${WORKSPACE+x} ]; then
40 docker_reg=${DOCKER_REG:-"public.ecr.aws/ubuntu"}
43 img_name=qemu-build
49 if [[ -n "${http_proxy}" ]]; then
50 …ho \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
55 export PROXY_HOST=${PROXY_HOST/%:[0-9]*}
61 set -x
66 gcc --version
67 git submodule update --init dtc
68 # disable anything that requires us to pull in X
70 --target-list=arm-softmmu \
71 --disable-spice \
72 --disable-docs \
73 --disable-gtk \
74 --disable-smartcard \
75 --disable-usb-redir \
76 --disable-libusb \
77 --disable-sdl \
78 --disable-gnutls \
79 --disable-vte \
80 --disable-vnc \
81 --disable-werror
83 make -j4
102 RUN apt-get update && apt-get install -yy --no-install-recommends \
105 ca-certificates \
109 libc6-dev \
110 libfdt-dev \
111 libglib2.0-dev \
112 libpixman-1-dev \
113 libslirp-dev \
115 ninja-build \
116 python3-tomli \
117 python3-venv \
118 python3-yaml \
119 iputils-ping
123 if ! docker build -t ${img_name} - <<< "${Dockerfile}" ; then
129 --userns host \
130 --user "$UID:${GROUPS[0]}" \
131 --rm=true \
132 -e WORKSPACE="${WORKSPACE}" \
133 -v "${WORKSPACE}":"${WORKSPACE}" \
134 -t ${img_name} \