We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccbdf09 commit ec5d733Copy full SHA for ec5d733
Jenkinsfile
@@ -10,12 +10,11 @@ pipeline {
10
}
11
12
stage("Yosys synthesis"){
13
- environment {
14
- TOPLEVEL = "mor1kx"
15
- VERSION = "5.0-r3"
16
- }
17
- steps{
18
- sh 'docker run --rm -v $(pwd):/src -e "TOPLEVEL=$TOPLEVEL" -e "VERSION=$VERSION" librecores/librecores-ci-openrisc /yosys-scripts/yosys.sh'
+ steps {
+ sh 'docker run --rm -v $(pwd):/src -w /src librecores/librecores-ci:0.4.0 /bin/bash -c \
+ "fusesoc library add mor1kx /src; \
+ fusesoc run --target=synth mor1kx; \
+ /test-scripts/extract-yosys-stats.py < build/mor1kx_*/synth-icestorm/yosys.log"'
19
20
21
0 commit comments