-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #503 from travis-ci/meat-windows-support
Add Windows support via GCE
- Loading branch information
Showing
4 changed files
with
500 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package remote | ||
|
||
import "io" | ||
|
||
type Remoter interface { | ||
UploadFile(path string, data []byte) (bool, error) | ||
DownloadFile(path string) ([]byte, error) | ||
RunCommand(command string, output io.Writer) (uint8, error) | ||
Close() error | ||
} |
Oops, something went wrong.