commit 41d4ae11c0b2930f386a66897260e2d8556fe734 parent 6cc55e6e04f251860cd82ec443463080d4d02427 Author: Marcel <MTRNord@users.noreply.github.com> Date: Wed, 6 Dec 2017 09:31:05 +0100 Fix working dir Diffstat:
| M | .circleci/config.yml | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -20,7 +20,9 @@ jobs: command: $GOPATH/bin/qtsetup full desktop - run: name: Run Build - command: cd $GOPATH/src/github.com/Nordgedanken/Morpheus/ && $GOPATH/bin/qtdeploy build desktop + working_directory: $GOPATH/src/github.com/Nordgedanken/Morpheus/ + command: $GOPATH/bin/qtdeploy build desktop - run: name: Run Tests - command: cd $GOPATH/src/github.com/Nordgedanken/Morpheus/ && $GOPATH/bin/qtdeploy test desktop -\ No newline at end of file + working_directory: $GOPATH/src/github.com/Nordgedanken/Morpheus/ + command: $GOPATH/bin/qtdeploy test desktop