How to configure gitlab pipeline for ReadyAPI from TestRunner
We are trying to configure gitlab pipeline for ReadyAPI from TestRunner commandline , We have added below code into the ".gitlab-ci.yml" file in gitLab
-------------------------------
stages:
- build
- test
build:
stage: build
script:
- echo "Building Pipeline"
test:
stage: test
script:
- echo "Testing Pipeline"
- chmod +x "PATH TO testrunner.bat" -a "-f PATH TO \Test Reports" "-RProject Report" -FPDF -E PATH TO PROJECT FILE
---------------------------------
The code is commited to GitLab.
When i run the Pipeline the execution is failed due to below Reason:
--------------------------------------
chmod: invalid option -- a
BusyBox v1.32.0 (2020-11-23 21:18:59 UTC) multi-call binary.
Usage: chmod [-Rcvf] MODE[,MODE]... FILE...
Each MODE is one or more of the letters ugoa, one of the
symbols +-= and one or more of the letters rwxst
-R Recurse
-c List changed files
-v List all files
-f Hide errors
ERROR: Job failed: exit code 1
------------------------------
Could anyone please provide the solution for this.