Katalon is blocked on Azure Devops

Hello,

I’m in a trial licence, and i’m trying to automate Katalon with Azure Pipelines.
As you can see below, everything seems to be fine, but the execution is blocked and everything happens.
The job continues endlessly.

Do you know if something is wrong in my azure-pipelines.yaml ?

here my confinguration :

pool:
  vmImage: 'ubuntu-latest'

steps:
- task: katalonTask@1
  displayName: 'Execute Katalon Tests'
  inputs:
    version: '8.5.0'
    executeArgs: '-executionProfile="default" -testSuitePath="Test Suites/New Test Suite" -apiKey="myapi-key" -browserType="Chrome"  -webui.autoUpdateDrivers=true'
    xvfbConfiguration: '-a -n 0 -s "-screen 0 1024x768x24"'

- task: PublishPipelineArtifact@0
  inputs:
    artifactName: 'JUnit Report'
    targetPath: report/

Thank you !

Best regards,
David

Hello,
did you also tried Dockerized engine?
We are running automation that way in azure without any issue for more than year. Only issue is length of start of docker…

Hello,

I finally ran the pipeline with Windows instead of Linux and it works correctly.
Nevertheless it could be a good idea to Dockerized it indeed.

Thanks for your reply !

docker version allready exists, that’s why we use it - no need to maintain