This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies + support for compiling on Windows
- Loading branch information
Showing
26 changed files
with
51 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/cflocal | ||
/cflocal-* | ||
/out | ||
.droplet | ||
.DS_Store | ||
.idea | ||
|
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 @@ | ||
0.2.2 |
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,16 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
cd $(dirname "${BASH_SOURCE[0]}")/.. | ||
|
||
mkdir -p out | ||
|
||
os_list=(darwin linux windows) | ||
out_list=(macos linux windows.exe) | ||
version=${1:-$(<VERSION)} | ||
|
||
for ((i=0; i < ${#os_list[@]}; i++)); do | ||
echo "Building plugin for ${os_list[i]}..." | ||
GOOS=${os_list[i]} go build -ldflags "-X main.Version=$version" -o "out/cflocal-$version-${out_list[i]}" . | ||
done |
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
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
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
Submodule distribution
deleted from
99cb7c
Submodule docker
updated
3905 files
Submodule go-connections
updated
10 files
+26 −23 | nat/nat.go | |
+33 −10 | nat/nat_test.go | |
+1 −0 | nat/parse.go | |
+6 −10 | sockets/sockets.go | |
+20 −0 | sockets/sockets_unix.go | |
+14 −0 | sockets/sockets_windows.go | |
+1 −1 | sockets/tcp_socket.go | |
+21 −0 | tlsconfig/certpool_go17.go | |
+16 −0 | tlsconfig/certpool_other.go | |
+6 −3 | tlsconfig/config.go |
Submodule go-units
deleted from
f2145d
Submodule osext
updated
6 files
+3 −0 | README.md | |
+9 −0 | osext_go18.go | |
+2 −0 | osext_plan9.go | |
+1 −1 | osext_procfs.go | |
+1 −1 | osext_sysctl.go | |
+2 −0 | osext_windows.go |
Submodule go-colorable
deleted from
6c903f
Submodule go-isatty
deleted from
66b8e7
Submodule ginkgo
updated
53 files
Submodule gomega
updated
20 files
+2 −3 | .travis.yml | |
+1 −1 | README.md | |
+110 −3 | format/format.go | |
+149 −14 | format/format_test.go | |
+13 −1 | gexec/build.go | |
+24 −2 | gexec/build_test.go | |
+92 −1 | gexec/session.go | |
+174 −1 | gexec/session_test.go | |
+2 −2 | ghttp/test_server.go | |
+11 −7 | gstruct/elements.go | |
+59 −0 | gstruct/elements_test.go | |
+4 −0 | gstruct/types.go | |
+1 −1 | matchers.go | |
+2 −1 | matchers/be_numerically_matcher.go | |
+6 −0 | matchers/equal_matcher.go | |
+34 −0 | matchers/equal_matcher_test.go | |
+72 −5 | matchers/match_json_matcher.go | |
+18 −0 | matchers/match_json_matcher_test.go | |
+7 −3 | matchers/panic_matcher.go | |
+9 −0 | matchers/panic_matcher_test.go |
Submodule runc
updated
from 02f8fa to a01daf
Submodule errors
deleted from
839d9e