From 4e56ab9bb1754e1d362e8ed22de6f293d89c43b0 Mon Sep 17 00:00:00 2001 From: Brian Botha Date: Wed, 1 Dec 2021 16:47:40 +1100 Subject: [PATCH] fix --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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