Hi, nice framework
i have a requirement to run k6 docker cloud but in jenkins
i’ve already tried this syntax
docker run --rm -i \
-e K6_CLOUD_TOKEN=${K6_CLOUD_TOKEN} -e K6_CLOUD_PROJECT_ID=${K6_CLOUD_PROJECT_ID} \
grafana/k6 run -o cloud - <./loadtests/scenarios/backend/GET/${ENDPOINT} \
-e BASE_API=https://qeomid-demo.wiremockapi.cloud -e BASE_CDS=https://qeomid-demo.wiremockapi.cloud \
-e PASSWORD_REGON=${PASSWORD_REGON} -e PASSWORD_SUBER=${PASSWORD_SUBER}
but it become this automatically in jenkins
docker run --rm -i -e K6_CLOUD_TOKEN=<token value> -e K6_CLOUD_PROJECT_ID=<project ID value> grafana/k6 run -o cloud - (**MISSING HERE**) -e BASE_API=https://qeomid-demo.wiremockapi.cloud -e BASE_CDS=https://qeomid-demo.wiremockapi.cloud -e PASSWORD_REGON=<pword value> -e PASSWORD_SUBER=<pword value>
but somehow the character <
is not readable in jenkins, do you know what is the correct syntax for the k6. command?
thanks so much