File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,24 @@ podTemplate(yaml: podDefinition) {
5050 stage(' Install Dependencies' ) {
5151 container(' oraclelinux' ) {
5252 print " ### Installing Dependencies ###"
53+
54+ // check OS version
55+ cat / etc/ os- release
56+ // install node.js
57+ yum - y install oracle- nodejs- release- el7 oracle- release- el7
58+ // enable oracle instant client - uncomment if required
59+ // yum-config-manager --enable ol7_oracle_instantclient
60+ // install sql plus - uncomment if required
61+ // yum -y install oracle-instantclient19.6-basic oracle-instantclient19.6-devel oracle-instantclient19.6-sqlplus
62+ // install python and python and required libraries
63+ yum - y install python3 pkgconfig make gcc curl sudo git libaio wget unzip pixman gcc- c++ nodejs binutils libtool autoconf automake
64+ // install linux build tools
65+ yum - y groupinstall ' Development Tools'
66+
5367 sh ' node -v'
5468 sh ' npm -v'
69+ sqlplus - v
70+ python3 -- version
5571 sh ' npm install -g allure-commandline'
5672 // sh 'npm install -D wiremock-standalone'
5773 sh ' npm install'
You can’t perform that action at this time.
0 commit comments