@@ -23,6 +23,8 @@ def commonPrekladVerRun(COMPONENTS) {
23
23
24
24
def failed = []
25
25
//load new fpga_version and set default simulator
26
+ def print_info = "hostname;"
27
+ print_info += "git --no-pager log -n 1;"
26
28
def toolsel = "set +x\n"
27
29
toolsel += "source fpga_version.sh\n"
28
30
toolsel += "fpga_sim -d\n"
@@ -44,6 +46,7 @@ def commonPrekladVerRun(COMPONENTS) {
44
46
// grep used to detect successfull run, each verification should have the following line before the last $stop:
45
47
// $write("Verification finished successfully!\n");
46
48
//
49
+ sh "${print_info}"
47
50
sh "${toolsel}${command}"
48
51
}
49
52
}
@@ -95,6 +98,8 @@ def commonPrekladMultiVerRun(COMPONENTS, ofm_path = pwd()) {
95
98
96
99
def failed = []
97
100
//load new fpga_version and set default simulator
101
+ def print_info = "hostname;"
102
+ print_info += "git --no-pager log -n 1;"
98
103
def toolsel = "set +x\n"
99
104
toolsel += "source fpga_version.sh\n"
100
105
toolsel += "fpga_sim -d\n"
@@ -117,6 +122,7 @@ def commonPrekladMultiVerRun(COMPONENTS, ofm_path = pwd()) {
117
122
stage("$name") {
118
123
dir("$path") {
119
124
def command = "python3 $multi_ver $fdo $pkg $settings -p \"$name\""
125
+ sh "${print_info}"
120
126
sh "${toolsel}${command}"
121
127
}
122
128
}
@@ -166,6 +172,8 @@ def commonPrekladHarpRun(COMPONENTS, ofm_path = pwd()) {
166
172
167
173
def failed = []
168
174
//load new fpga_version and set default simulator
175
+ def print_info = "hostname;"
176
+ print_info += "git --no-pager log -n 1;"
169
177
def toolsel = "set +x\n"
170
178
toolsel += "source fpga_version.sh\n"
171
179
toolsel += "fpga_sim -d\n"
@@ -200,6 +208,7 @@ def commonPrekladHarpRun(COMPONENTS, ofm_path = pwd()) {
200
208
stage("$name") {
201
209
dir("$path") {
202
210
def command = "harp multiver"
211
+ sh "${print_info}"
203
212
sh "${env_source}${toolsel}${command}"
204
213
}
205
214
}
0 commit comments