Skip to content

Commit 95f4d8e

Browse files
committed
Added system specification
1 parent fd500f7 commit 95f4d8e

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.devops/cloud-v-pipeline

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@ node('jupiter-16G-1'){ // Running on x86 runner containing latest vec
22
stage('Cleanup'){
33
cleanWs() // Cleaning previous CI build in workspace
44
}
5+
stage('Run system_info') {
6+
sh '''#!/bin/bash
7+
echo '============================================================='
8+
echo ' CPU INFO START '
9+
echo '============================================================='
10+
cat /proc/cpuinfo
11+
echo '============================================================='
12+
echo ' CPU INFO END '
13+
echo '============================================================='
14+
15+
echo '============================================================='
16+
echo ' Kernel Info Start '
17+
echo '============================================================='
18+
uname -a
19+
echo '============================================================='
20+
echo ' Kernel Info End '
21+
echo '============================================================='
22+
echo '============================================================='
23+
echo ' Glibc Version Start '
24+
echo '============================================================='
25+
ldd --version
26+
echo '============================================================='
27+
echo ' Glibc Version End '
28+
echo '============================================================='
29+
echo '============================================================='
30+
echo ' OS Info Start '
31+
echo '============================================================='
32+
cat /etc/os-release
33+
echo '============================================================='
34+
echo ' OS Info End '
35+
echo '============================================================='
36+
37+
echo '============================================================='
38+
echo ' GCC Version '
39+
echo '============================================================='
40+
gcc --version
41+
echo '============================================================='
42+
echo ' GCC Version End '
43+
echo '============================================================='
44+
'''
45+
}
546
stage('Install dependencies'){
647
sh'''
748
#!/bin/bash

0 commit comments

Comments
 (0)