We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9a6326 commit e819b9fCopy full SHA for e819b9f
template/remote.yaml
@@ -0,0 +1,15 @@
1
+action: follow these steps to setup execution environment
2
+
3
+steps:
4
+ - Read .vscode/settings.json for tai.ssh and tai.docker parameters
5
+ - Read CMakeLists.txt for build commands and options
6
+ - Execute commands via ssh_cmd + docker_exec template
7
8
+ssh_cmd: ssh -i "{tai.ssh.privateKeyPath}" -o StrictHostKeyChecking=no {tai.ssh.username}@{tai.ssh.host}
9
+docker_exec: docker exec {tai.docker.name} bash -l -c '{command}'
10
11
+build_dir: /domino/build
12
13
+notes:
14
+ - Compiler is configured in container ~/.bashrc, must use bash -l -c to execute
15
+ - Local U:\domino is mapped to container /domino
0 commit comments