diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 75f92b4e67..fb3674a00c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -253,7 +253,7 @@ application run: tail -1 \ )" - echo password > testPassword - - $build_application/bin/polykey agent start -np ./nodePath --password-file ./testPassword --test + - $build_application/bin/polykey only: - master - qa-testing @@ -283,7 +283,7 @@ linux run: - nix script: - echo password > testPassword - - for f in ./builds/*-linux-*; do "$f" agent start -np ./nodePath --password-file ./testPassword --test; done + - for f in ./builds/*-linux-*; do "$f"; done only: - qa-testing - master @@ -294,7 +294,7 @@ windows run: - nix script: - echo password > testPassword - - Get-ChildItem -File ./builds/*-win32-* | ForEach {& $_.FullName agent start -np ./nodePath --password-file ./testPassword --test} + - Get-ChildItem -File ./builds/*-win32-* | ForEach {& $_.FullName} tags: - windows only: @@ -308,7 +308,7 @@ macos run: - nix script: - echo password > testPassword - - for f in ./builds/*-macos-*; do "$f" agent start -np ./nodePath --password-file ./testPassword --test; done + - for f in ./builds/*-macos-*; do "$f"; done only: - qa-testing - master