I would like to use Azure Pipelines to call Open XLTerminal in Remote Ubuntu Server (called ServerYYY).
a) In Releases in Azure Pipelines, I tried to add "Deployment Group Job" task (which I followed this document to perform)
- Create Bash Task with Inline script
lxterminal --title="MyScriptWindow"
but having error:(lxterminal:26865): Gtk-WARNING **: 08:36:56.947: cannot open display:
b) In Releases in Azure Pipelines, I tried to add "Agent Job" task
- Create SSH Task to connect ServerYYY with Inline script
lxterminal --title="MyScriptWindow"
same error as above
How can I run task to open Open XLTerminal so that when I remote to ServerYYY, I can see the Teminal opening?