diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-07 22:18:54 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-07 22:18:54 -0600 |
commit | 9d3e81fe4dcb381c7e61393c7147fc127d5145c9 (patch) | |
tree | 0ed87fe0eb183b18e9503cecf5a3d962b00ad7b2 | |
parent | 7b1ef4aa3f0fbe0b0742a272327ba29325bd917c (diff) | |
download | horizon-9d3e81fe4dcb381c7e61393c7147fc127d5145c9.tar.gz horizon-9d3e81fe4dcb381c7e61393c7147fc127d5145c9.tar.bz2 horizon-9d3e81fe4dcb381c7e61393c7147fc127d5145c9.tar.xz horizon-9d3e81fe4dcb381c7e61393c7147fc127d5145c9.zip |
CI: fix PATH
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6db1614..db638ff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ test: stage: test script: - cd tests - - PATH=../build/tools/hscript-validate:../build/tools/hscript-simulate:$PATH rspec --format RspecJunitFormatter --out rspec.xml + - PATH=../build/tools/hscript-validate:../build/tools/hscript-simulate:../build/owner:$PATH rspec --format RspecJunitFormatter --out rspec.xml - cd ../build - make lcov_report - make lcov_html |