Skip to content

Commit 4e56ab9

Browse files
committed
fix
1 parent 56f204c commit 4e56ab9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.gitlab-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ application run:
253253
tail -1 \
254254
)"
255255
- echo password > testPassword
256-
- $build_application/bin/polykey agent start -np ./nodePath --password-file ./testPassword --test
256+
- $build_application/bin/polykey
257257
only:
258258
- master
259259
- qa-testing
@@ -283,7 +283,7 @@ linux run:
283283
- nix
284284
script:
285285
- echo password > testPassword
286-
- for f in ./builds/*-linux-*; do "$f" agent start -np ./nodePath --password-file ./testPassword --test; done
286+
- for f in ./builds/*-linux-*; do "$f"; done
287287
only:
288288
- qa-testing
289289
- master
@@ -294,7 +294,7 @@ windows run:
294294
- nix
295295
script:
296296
- echo password > testPassword
297-
- Get-ChildItem -File ./builds/*-win32-* | ForEach {& $_.FullName agent start -np ./nodePath --password-file ./testPassword --test}
297+
- Get-ChildItem -File ./builds/*-win32-* | ForEach {& $_.FullName}
298298
tags:
299299
- windows
300300
only:
@@ -308,7 +308,7 @@ macos run:
308308
- nix
309309
script:
310310
- echo password > testPassword
311-
- for f in ./builds/*-macos-*; do "$f" agent start -np ./nodePath --password-file ./testPassword --test; done
311+
- for f in ./builds/*-macos-*; do "$f"; done
312312
only:
313313
- qa-testing
314314
- master

0 commit comments

Comments
 (0)