Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tegefaulkes committed Dec 1, 2021
1 parent 56f204c commit 4e56ab9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 4e56ab9

Please sign in to comment.