Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pipeline
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
linuxsupport
Debian
pipeline
Merge requests
!2
Add CERN tweaks
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add CERN tweaks
tweaks
into
master
Overview
0
Commits
15
Pipelines
2
Changes
12
Merged
Add CERN tweaks
Alex Iribarren
requested to merge
tweaks
into
master
May 21, 2024
Overview
0
Commits
15
Pipelines
2
Changes
12
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
1e4ff951
15 commits,
May 21, 2024
12 files
+
137
−
31
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
images/dockerfiles/autopkgtest.0
+
17
−
2
View file @ 1e4ff951
Edit in single-file editor
Open in Web IDE
Show full file
@@ -4,11 +4,26 @@
# permitted in any medium without royalty provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
RUN echo "deb http://deb.debian.org/debian/ unstable main" >> /etc/apt/sources.list
RUN echo "deb-src http://deb.debian.org/debian/ unstable main" >> /etc/apt/sources.list
COPY files/autopkgtest/default-release.conf /etc/apt/apt.conf.d/default-release.conf
COPY files/autopkgtest/apt-pinning.conf /etc/apt/preferences.d/apt-pinning.conf
# To mimic the ci.debian.net setup as much as possible, create the autopkgtest
# image based on stable, but install autodep8, autopkgtest and debci from
# unstable (or from experimental during freeze, when required). The version
# information of these packages in ci.d.n can be found at:
# https://salsa.debian.org/ci-team/debian-ci-config/-/blob/master/rakelib/versions.rake?ref_type=heads
RUN apt-get update && \
apt-get upgrade -y && \
eatmydata apt-get install -y \
dnsmasq-base debci libvirt-clients libvirt-daemon-system libvirt-daemon-system-sysv \
autopkgtest lxc lxc-templates wget && \
dnsmasq-base libvirt-clients libvirt-daemon-system libvirt-daemon-system-sysv \
lxc lxc-templates wget && \
eatmydata apt-get install -y -t unstable \
autodep8 \
autopkgtest \
debci && \
rm -rf /var/lib/apt && \
rm /usr/sbin/policy-rc.d && \
ln -s /bin/true /usr/sbin/policy-rc.d
Loading