I had this problem. I solved that like:
[Environment Variables > System Variables > Path > Add Katalon.exe and Git.exe directories1
And then, The contents of the .gitlab-ci.yml file are as follows:
Simple .gitlab-ci.yml :
run_katalon_test_suite:
tags:
- shell
script:
- echo $CI_JOB_STAGE
Simple .gitlab-ci.yml to run test suit in Katalon Studio:
run_katalon_test_suite:
tags:
- shell
script:
- katalon -noSplash -runMode=console -consoleLog -noExit -projectPath="C:\Users\7713\git\turkuaz-katalon-test-project\turkuaz-katalon-test-project.prj" -retry=1 -retryFailedTestCases=false -testSuitePath="Test Suites/cansuarslan/TS_01_CompletedTestCases" -executionProfile="default" -browserType="Chrome"