Compare commits

...

12 Commits

Author SHA1 Message Date
2403bf91b1 add missing package + config for runner 2025-03-21 19:19:15 +01:00
9a7b7c6c4f add build for jammy 2025-03-21 18:36:39 +01:00
dany
7d9f09eaba use remote agent instead of ssh connection
All checks were successful
gitea-sync/ci-yocto/pipeline/head This commit looks good
2022-09-29 19:09:44 +02:00
dany
09e3c5d6a7 dont use fixed workspace path for building
All checks were successful
gitea-sync/ci-yocto/pipeline/head This commit looks good
2022-09-26 09:33:00 +02:00
dany
2bd5e258bd Mise à jour de 'Dockerfile'
Some checks failed
gitea-sync/ci-yocto/pipeline/head There was a failure building this commit
2022-08-07 10:13:09 +02:00
dany
9a6351faeb Mise à jour de 'Dockerfile' 2022-08-07 00:52:01 +02:00
dany
6eb8151504 Mise à jour de 'Dockerfile' 2022-08-07 00:30:53 +02:00
dany
8b7a34b2a6 Mise à jour de 'Dockerfile' 2022-08-07 00:28:55 +02:00
dany
ca78d529ba Update 'Dockerfile' 2022-08-03 18:03:04 +02:00
dany
57fefd9699 Update 'Dockerfile' 2022-08-03 17:54:27 +02:00
Dany LE
e235cfa3cb add jenkin file 2022-08-03 16:44:17 +02:00
Dany LE
e1c0df3aac add docker file 2022-08-03 16:43:21 +02:00
2 changed files with 26 additions and 0 deletions

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM ubuntu:jammy AS build-env
RUN dpkg --add-architecture i386
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" \
apt-get --yes --no-install-recommends install \
build-essential chrpath cpio debianutils diffstat \
file gawk gcc git iputils-ping libacl1 liblz4-tool locales locales-all \
python3 python3-git python3-jinja2 python3-pexpect python3-pip \
python3-subunit socat texinfo unzip wget xz-utils zstd \
curl unzip libc6:i386 zlib1g:i386 zlib1g
# for the runner use
RUN apt-get update && apt-get --yes --no-install-recommends install \
nodejs npm git wget libfuse2 fuse3
RUN groupadd -g 1000 -o ci
RUN useradd -m -u 1000 -g 1000 -o -s /bin/bash ci
ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8
USER ci
WORKDIR /home/ci

5
build.sh Executable file
View File

@ -0,0 +1,5 @@
#! /bin/bash
docker buildx build \
--platform amd64 \
--output "type=docker,push=false,name=iohubdev/ci-yocto:jammy" \
.