Skip to content

Commit

Permalink
RISC-V: add build spec for native builds
Browse files Browse the repository at this point in the history
This commit adds a RISC-V native build spec for CI testing. This is
intended to run on Eclipse CBI [1].

[1]: https://github.com/eclipse-cbi/cbi/wiki#whats-provided
  • Loading branch information
janvrany committed Nov 21, 2024
1 parent af52690 commit 6537581
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions buildenv/jenkins/omrbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,26 @@ SPECS = [
'testArgs' : '',
'junitPublish' : true
],
'linux_riscv64' : [
'alias': 'riscv',
'label' : 'hw.arch.riscv64',
'reference' : defaultReference,
'environment' : [
'PATH+CCACHE=/usr/lib/ccache/'
],
'ccache' : false,
'buildSystem' : 'cmake',
'builds' : [
[
'buildDir' : cmakeBuildDir,
'configureArgs' : '-Wdev -C../cmake/caches/Travis.cmake',
'compile' : defaultCompile
]
],
'test' : true,
'testArgs' : '',
'junitPublish' : true
],
'linux_x86' : [
'alias': 'x32linux',
'label' : 'compile:xlinux',
Expand Down

0 comments on commit 6537581

Please sign in to comment.