summaryrefslogtreecommitdiff
path: root/build/linux-remote.expect
diff options
context:
space:
mode:
Diffstat (limited to 'build/linux-remote.expect')
-rw-r--r--build/linux-remote.expect55
1 files changed, 0 insertions, 55 deletions
diff --git a/build/linux-remote.expect b/build/linux-remote.expect
deleted file mode 100644
index 18fcdc8b..00000000
--- a/build/linux-remote.expect
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/expect
-# procedure to attempt connecting; result 0 if OK, 1 otherwise
-proc connect {} {
- expect "login:"
- send "kitteh\r"
- expect "password:"
- send "a\r"
-expect {
- kitteh {return 0}
- failed return 1
- "invalid password" return 1
- timeout return 1
- connected
-}
- # timed out
- return 1
-}
-
-# procedure to do build stuff; result 0 if OK, 1 otherwise
-proc dobuild {} {
- set timeout -1
- send "pkg-win32.bat\r\n"
- puts "\nBuilding...\n"
-expect {
- "BUILD OK" {return 0}
- "MSVC ERROR" {return 1}
- "CMAKE ERROR" {return 1}
- "ENV ERROR" {return 1}
-}
-}
-
-spawn telnet win7
-
-set rez [connect]
-if { $rez == 1 } {
-puts "\nError connecting to server!\n"
-exit 1
-}
-
-send "net use X: \\\\vboxsvr\\projects\r\n"
-expect "The command completed successfully."
-send "X:\r\n"
-expect "X:"
-send "cd X:\\dfhack\\build\r\n"
-expect "build"
-
-set buildrez [dobuild]
-if { $buildrez == 1 } {
- puts "\nThere was an error during build.\n"
-} else {
- puts "\nAll OK.\n"
-}
-send "exit\r"
-expect eof
-exit $buildrez