Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
steam-runtime-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
steamrt
steam-runtime-tools
Commits
e32742ef
Commit
e32742ef
authored
4 years ago
by
Ludovico de Nittis
Browse files
Options
Downloads
Patches
Plain Diff
Fix and enable Archlinux CI test job
Signed-off-by:
Ludovico de Nittis
<
ludovico.denittis@collabora.com
>
parent
6972a322
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/gitlab-ci.yml
+7
-2
7 additions, 2 deletions
debian/gitlab-ci.yml
tests/containers.py
+4
-2
4 additions, 2 deletions
tests/containers.py
with
11 additions
and
4 deletions
debian/gitlab-ci.yml
+
7
−
2
View file @
e32742ef
...
...
@@ -293,18 +293,23 @@ test:focal:
test:archlinux
:
extends
:
.test_template
image
:
archlinux:latest
# TODO this test does not work yet
when
:
manual
# Do not use the global before_script because it is only for Debian based
# distros
before_script
:
-
|
set -eux
# Enable multilib repository
echo -e "\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
pacman -Syu --needed --noconfirm --noprogressbar \
base-devel \
git \
lib32-glibc \
lib32-mesa \
python \
python-chardet \
python-six \
python-tappy \
sudo \
${NULL+}
...
...
This diff is collapsed.
Click to expand it.
tests/containers.py
+
4
−
2
View file @
e32742ef
...
...
@@ -922,12 +922,14 @@ class TestContainers(BaseTest):
if
os
.
path
.
isfile
(
'
/usr/bin/locale
'
):
link
=
os
.
path
.
join
(
tree
,
'
usr
'
,
'
bin
'
,
'
locale
'
)
target
=
os
.
readlink
(
link
)
self
.
assertEqual
(
target
,
'
/run/host/usr/bin/locale
'
)
# Might be either /usr/bin/locale or /usr/sbin/locale
self
.
assertRegex
(
target
,
r
'
^/run/host/usr/
'
)
if
os
.
path
.
isfile
(
'
/usr/bin/localedef
'
):
link
=
os
.
path
.
join
(
tree
,
'
usr
'
,
'
bin
'
,
'
localedef
'
)
target
=
os
.
readlink
(
link
)
self
.
assertEqual
(
target
,
'
/run/host/usr/bin/localedef
'
)
# Might be either /usr/bin/localedef or /usr/sbin/localedef
self
.
assertRegex
(
target
,
r
'
^/run/host/usr/
'
)
for
ldso
,
scout_impl
in
(
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment