itemengine-cypress-automation 1.0.7 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- package/deploy.yaml +9 -1
- package/package.json +1 -1
- package/run.sh +2 -1
- package/scripts/sorry-cypress.mjs +1 -1
package/deploy.yaml
CHANGED
@@ -3,6 +3,9 @@ global:
|
|
3
3
|
name: itemengine-cypress-automation
|
4
4
|
type: integration_test
|
5
5
|
|
6
|
+
variables:
|
7
|
+
START_TIME: "$(date +%s)"
|
8
|
+
|
6
9
|
deployment:
|
7
10
|
job:
|
8
11
|
activeDeadlineSeconds: 7200
|
@@ -18,4 +21,9 @@ deployment:
|
|
18
21
|
cpu: 5000m
|
19
22
|
requests:
|
20
23
|
memory: 4096Mi
|
21
|
-
cpu: 2000m
|
24
|
+
cpu: 2000m
|
25
|
+
|
26
|
+
env:
|
27
|
+
instance:
|
28
|
+
- name: START_TIME
|
29
|
+
value: "${{ variables.START_TIME }}"
|
package/package.json
CHANGED
package/run.sh
CHANGED
@@ -31,7 +31,7 @@ function runSorryCypress(ciBuildId) {
|
|
31
31
|
* @method runSorryCypressSpinnaker
|
32
32
|
*/
|
33
33
|
export function runSorryCypressSpinnaker() {
|
34
|
-
console.log('process.env.fileConfig', process.env.fileConfig)
|
34
|
+
//console.log('process.env.fileConfig', process.env.fileConfig)
|
35
35
|
console.log('process.argv', process.argv)
|
36
36
|
console.log('process.env.STAGE', process.env.STAGE)
|
37
37
|
//startTime = process.env.START_TIME;
|