This library contains common operations and logic for LibreCores CI.
The library is under development. All commands may change, the compatibility is not guaranteed.
This is the class to more conveniently build CI based on Environment Modules (http://modules.sourceforge.net/). First modules are loaded to the environment and calling sh() then executes the command(s) in that environment.
Usage:
@Library('librecoresci') import org.librecores.ci.Modules
def lcci = new Modules(steps)
node('librecores-ci-modules') {
lcci.load(["eda/verilator/3.902"])
stage('Simulation Build') {
lcci.sh 'verilator -f verilate.vc'
}
}
Executes the sh()
command with initializing the specified modules before executing.
Example:
node('librecores-ci-modules') {
sh_with_modules(modules: ["gcc", "fusesoc/1.6"], command: "make all")
}
Effectively the example above creates commands like source ${modulesPath}/init/bash && sh "module load gcc && module load fusesoc/1.6 && make all"
.
Builds a pipeline for OpenRISC projects.
Out of the box it configures:
- Pulls Docker images for
librecores-ci-openrisc
- Executes jobs in parallel inside Docker images
- Each
job
invocation will run the.travis/test.sh
script in the module directory
- job - invokes a new job, the sub-parameters are:
- job - the value of the
JOB
env var that will be exported to.travis/test.sh
- sim - (optional) the value of the
SIM
env var that will be exported to.travis/test.sh
- pipeline - (optional) the value of the
PIPELINE
env var that will be exported to.travis/test.sh
- expectedFailures - (optional) the value of the
EXPECTED_FAILURES
env var that will be exported to.travis/test.sh
- extraCoreArgs - (optional) the value of the
EXTRA_CORE_ARGS
env var that will be exported to.travis/test.sh
This snippet is from the Jenkins pipeline for mor1kx
@Library('librecoresci') _
openriscPipeline {
job('verilator') {
job 'verilator'
}
job('testing-1') {
job 'or1k-tests'
sim 'icarus'
pipeline 'CAPPUCCINO'
expectedFailures 'or1k-cy'
}
}
Builds a step for generic FuseSoC invocation.
- Chooses a base docker image with FuseSoC
- Adds library to FuseSoC
- Runs FuseSoC step
- Runs arbitrary shell commands in this step
- image - name of the docker image to execute within
- library - name of a FuseSoC library to include into the build, multiple libraries may be specified
- run - a FuseSoC target to run the argument,
some_core
below, is the core to run.run()
can be specified multiple times to execute multiple fusesoc builds. The available parameters are:- target - the FuseSoC target to run, the
--target
argument to fusesoc - tool - the FuseSoC tool to run, the
--tool
argument to fusesoc - backendArgs - additional args to provide to fusesoc
- target - the FuseSoC target to run, the
- shell - a shell command to run, multiple invokations can be specified, all will be run after FuseSoC
@Library('librecoresci') _
pipeline {
stages {
stage('example-fusesoc-step') {
fusesoc {
image 'librecores/librecores-ci:0.5.0'
library 'some_core', '/src'
run('some_core') {
target 'fusesoc_target'
}
shell "echo 'Additional steps on shell'"
}
}
}
}
Build a step for Yosys Synthesis for monitoring resource usage statistics and publish on Jenkins.
- Generalised Yosys Synthesis
- Can be configured for various hardware projects
- Simple declarative call which requires parameters
core
,target
,logpath
- Can be modified and extend to include more parameters in future.
- core - the fusesoc core to run
- target - the fusesoc target to run yosys synthesis, the default is "synth"
- logPath - the location of the
yosys.log
file, the default is "build/${core}_/${target}-/yosys.log"
@Library('librecoresci') _
pipeline {
agent any
stages{
stage('yosys') {
steps {
yosysSynthesisReport {
core 'mor1kx'
target 'synth'
logPath 'build/mor1kx_5.0-r3/synth-icestorm/yosys.log'
}
}
}
}
}