@@ -13,8 +13,8 @@ pipeline {
1313 yaml """
1414 spec:
1515 containers:
16- - name: narwhal
17- image: nex-nef-docker-releases .repo.cci.nokia.net/nmp/narwhal :latest
16+ - name: typescript
17+ image: nex-nef-docker-candidates .repo.cci.nokia.net/nmp-sdk-typescript-container :latest
1818 workingDir: /home/jenkins
1919 tty: true
2020 command:
@@ -71,7 +71,7 @@ pipeline {
7171 stages {
7272 stage(' Setup' ) {
7373 steps {
74- container(' narwhal ' ) {
74+ container(' typescript ' ) {
7575 script {
7676 sh """
7777 npm config set proxy http://fihel1d-proxy.emea.nsn-net.net:8080
@@ -83,7 +83,7 @@ pipeline {
8383 }
8484 stage(' Linting' ) {
8585 steps {
86- container(' narwhal ' ) {
86+ container(' typescript ' ) {
8787 script {
8888 sh """
8989 npm run lint
@@ -94,7 +94,7 @@ pipeline {
9494 }
9595 stage(' Test' ) {
9696 steps {
97- container(' narwhal ' ) {
97+ container(' typescript ' ) {
9898 script {
9999 sh """
100100 npm test
@@ -105,7 +105,7 @@ pipeline {
105105 }
106106 stage(' Audit' ) {
107107 steps {
108- container(' narwhal ' ) {
108+ container(' typescript ' ) {
109109 script {
110110 sh """
111111 npm audit --prod
@@ -117,7 +117,7 @@ pipeline {
117117 stage(' Integration Test' ) {
118118 when { expression { env. gitlabActionType != " TAG_PUSH" } }
119119 steps {
120- container(' narwhal ' ) {
120+ container(' typescript ' ) {
121121 script {
122122 sh """
123123 env | grep gitlab
@@ -149,7 +149,7 @@ pipeline {
149149 }
150150 stage(' Build' ) {
151151 steps {
152- container(' narwhal ' ) {
152+ container(' typescript ' ) {
153153 script {
154154 sh """
155155 npm run build
@@ -160,7 +160,7 @@ pipeline {
160160 }
161161 stage(' Installation Test' ){
162162 steps {
163- container(' narwhal ' ) {
163+ container(' typescript ' ) {
164164 script {
165165 sh '''
166166 bash installation-test/installation-test-ts.sh
@@ -174,7 +174,7 @@ pipeline {
174174 stage(' Candidate integration tests against production' ) {
175175 when { expression { env. gitlabActionType == " TAG_PUSH" && env. gitlabBranch. contains(" rc-" )} }
176176 steps {
177- container(' narwhal ' ) {
177+ container(' typescript ' ) {
178178 script {
179179 sh """
180180 env | grep gitlab
@@ -193,7 +193,7 @@ pipeline {
193193 stage(' Release integration tests against production' ) {
194194 when { expression { env. gitlabActionType == " TAG_PUSH" && env. gitlabBranch. contains(" release-" )} }
195195 steps {
196- container(' narwhal ' ) {
196+ container(' typescript ' ) {
197197 script {
198198 sh """
199199 env | grep gitlab
@@ -211,7 +211,7 @@ pipeline {
211211 stage(' Publish' ) {
212212 when { expression { env. gitlabActionType == " TAG_PUSH" && env. gitlabBranch. contains(" release-" )} }
213213 steps {
214- container(' narwhal ' ) {
214+ container(' typescript ' ) {
215215 script {
216216 if (env. gitlabActionType == " TAG_PUSH" && env. gitlabBranch. contains(" release-" )) {
217217 sh '''
0 commit comments