Dev focused conversations, questions and discussions around PRs, etc should happen here.
JGrotex on master
Update README.md (compare)
JGrotex on master
Create readme.md (compare)
JGrotex on master
Update timers.md Changed the n… Merge pull request #561 from dh… (compare)
JGrotex on master
Fix broken link to tibco labs Merge pull request #510 from ra… (compare)
Hai I am exporting a windows build from the flogo web , when I am trying to do that i keep getting the following error on cmd pmt could any one help me solve this issue
'''
info: [16:54:43.609] run command: flogo build -o -e
warn: [16:54:48.006] command exited with code 1: flogo build -o -e
error: [16:54:48.007] Error building project: go: finding github.com/StackExchange/wmi latest
go: finding github.com/go-ole/go-ole/oleutil latest
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:184:13: undefined: "golang.org/x/sys/windows".EnumProcesses
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:222:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:271:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:374:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:443:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:489:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:692:32: undefined: "golang.org/x/sys/windows".PROCESS_SUSPEND_RESUME
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:712:32: undefined: "golang.org/x/sys/windows".PROCESS_SUSPEND_RESUME
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:800:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:815:32: undefined: "golang.org/x/sys/windows".PROCESS_QUERY_LIMITED_INFORMATION
/go/pkg/mod/github.com/shirou/gopsutil@v2.20.9+incompatible/process/process_windows.go:815:32: too many errors
'''
GOOS=windows GOARCH=amd64
env variables when you select the windows/amd64
option in the Web UI.
GOOS=windows GOARCH=amd64 flogo build
(golang v1.15) but I was not able to make it work inside the docker container. I created a Dockerfile that only installs flogo CLI directly on top of go's official docker image (golang) and I get the same errors. So there's some incompatibility in the github.com/shirou/gopsutil
lib with golang's image (which is built on top of debian) or perhaps there's an additional library that has to be installed in the docker image in order to enable the cross compilation to windows/amd64