build with qemu for focal and remove some deps

pull/40/head
thelamer 2020-04-17 15:31:35 -07:00
rodzic 6212c1f209
commit a2035cf0e3
5 zmienionych plików z 12 dodań i 5 usunięć

Wyświetl plik

@ -82,9 +82,11 @@ RUN \
apt-utils \ apt-utils \
locales && \ locales && \
echo "**** install packages ****" && \ echo "**** install packages ****" && \
apt-get install -y \ apt-get install --no-install-recommends -y \
ca-certificates \
curl \ curl \
gnupg \ gnupg \
libc6 \
tzdata && \ tzdata && \
echo "**** generate locale ****" && \ echo "**** generate locale ****" && \
locale-gen en_US.UTF-8 && \ locale-gen en_US.UTF-8 && \

Wyświetl plik

@ -82,9 +82,11 @@ RUN \
apt-utils \ apt-utils \
locales && \ locales && \
echo "**** install packages ****" && \ echo "**** install packages ****" && \
apt-get install -y \ apt-get install --no-install-recommends -y \
ca-certificates \
curl \ curl \
gnupg \ gnupg \
libc6 \
tzdata && \ tzdata && \
echo "**** generate locale ****" && \ echo "**** generate locale ****" && \
locale-gen en_US.UTF-8 && \ locale-gen en_US.UTF-8 && \

Wyświetl plik

@ -82,9 +82,11 @@ RUN \
apt-utils \ apt-utils \
locales && \ locales && \
echo "**** install packages ****" && \ echo "**** install packages ****" && \
apt-get install -y \ apt-get install --no-install-recommends -y \
ca-certificates \
curl \ curl \
gnupg \ gnupg \
libc6 \
tzdata && \ tzdata && \
echo "**** generate locale ****" && \ echo "**** generate locale ****" && \
locale-gen en_US.UTF-8 && \ locale-gen en_US.UTF-8 && \

4
Jenkinsfile vendored
Wyświetl plik

@ -327,7 +327,7 @@ pipeline {
} }
stage('Build ARMHF') { stage('Build ARMHF') {
agent { agent {
label 'ARMHF' label 'X86-64-MULTI'
} }
steps { steps {
withCredentials([ withCredentials([
@ -354,7 +354,7 @@ pipeline {
} }
stage('Build ARM64') { stage('Build ARM64') {
agent { agent {
label 'ARM64' label 'X86-64-MULTI'
} }
steps { steps {
withCredentials([ withCredentials([

Wyświetl plik

@ -6,6 +6,7 @@ external_type: os
release_type: prerelease release_type: prerelease
release_tag: focal release_tag: focal
ls_branch: focal ls_branch: focal
use_qemu: true
repo_vars: repo_vars:
- BUILD_VERSION_ARG = 'OS' - BUILD_VERSION_ARG = 'OS'
- LS_USER = 'linuxserver' - LS_USER = 'linuxserver'