Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mrhlpr
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
mrhlpr
Merge requests
!15
pipeline: support riscv64
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Imported
pipeline: support riscv64
mrtest-riscv64
into
master
Overview
4
Commits
1
Pipelines
1
Changes
1
Closed
Imported
Administrator
requested to merge
mrtest-riscv64
into
master
2 years ago
Overview
4
Commits
1
Pipelines
1
Changes
1
Expand
Currently the Alpine CI jobs are called build-riscv64-emulated, so use the -emulated suffix also.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8627dbde
1 commit,
2 years ago
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
mrhlpr/pipeline.py
+
2
−
1
Options
@@ -14,7 +14,8 @@ def get_arch_alpine_native():
"
x86_64
"
:
"
x86_64
"
,
"
aarch64
"
:
"
aarch64
"
,
"
armv6l
"
:
"
armhf
"
,
"
armv7l
"
:
"
armv7
"
"
armv7l
"
:
"
armv7
"
,
"
riscv64
"
:
"
riscv64-emulated
"
,
}
if
machine
in
mapping
:
return
mapping
[
machine
]
Loading