Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
open-build-service
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
Container registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
obs
open-build-service
Merge requests
!13
Replace armv7l with armv7hl and add aarch64 to the default configuration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Replace armv7l with armv7hl and add aarch64 to the default configuration
adjust-default-arches
into
collabora/staging
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Replace armv7l with armv7hl and add aarch64 to the default configuration
Andrej Shadura
requested to merge
adjust-default-arches
into
collabora/staging
Apr 27, 2022
Overview
0
Commits
1
Pipelines
1
Changes
1
We don’t use armv7l.
0
0
Merge request reports
Compare
collabora/staging
collabora/staging (base)
and
latest version
latest version
411b902d
1 commit,
Apr 27, 2022
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/api/db/seeds.rb
+
1
−
1
View file @ 411b902d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -10,7 +10,7 @@ puts 'Seeding architectures table...'
Architecture
.
where
(
name:
arch_name
).
first_or_create
end
# following our default config
[
'armv7
l
'
,
'i586'
,
'x86_64'
].
each
do
|
arch_name
|
[
'armv7
hl'
,
'aarch64
'
,
'i586'
,
'x86_64'
].
each
do
|
arch_name
|
a
=
Architecture
.
find_by_name
(
arch_name
)
a
.
available
=
true
a
.
save
Loading