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 dc27c41 commit ccbdf09Copy full SHA for ccbdf09
.jenkins/yosys.sh
Jenkinsfile
@@ -9,19 +9,20 @@ pipeline {
9
}
10
11
12
- stage("Yosys synthesis"){
13
- agent {
14
- docker { image 'librecores/librecores-ci:0.3.0' }
15
- }
+ stage("Yosys synthesis"){
+ environment {
+ TOPLEVEL = "mor1kx"
+ VERSION = "5.0-r3"
16
+ }
17
steps{
- sh 'docker run --rm -v $(pwd):/src librecores/librecores-ci:0.4.0 /src/.jenkins/yosys.sh'
18
+ sh 'docker run --rm -v $(pwd):/src -e "TOPLEVEL=$TOPLEVEL" -e "VERSION=$VERSION" librecores/librecores-ci-openrisc /yosys-scripts/yosys.sh'
19
20
21
22
stage('Performance tests') {
23
steps {
24
echo "-=- execute performance tests -=-"
- perfReport 'result.csv'
25
+ perfReport 'output.csv'
26
27
28
0 commit comments