-
Notifications
You must be signed in to change notification settings - Fork 67
Update for work state to 2023.08.01 #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
972084f
f65baa6
04acd67
39442d7
f82b92e
60a8df0
c2a5f4c
800be76
721ca00
261b39e
453744c
3661aa9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,6 @@ bin | |
| offline | ||
| config.json | ||
| logs | ||
| view_log | ||
| wda_wrapper/go.sum | ||
| temp | ||
| dist.tgz | ||
| cache/* | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,12 @@ | ||
| module coordinator.go | ||
|
|
||
| go 1.12 | ||
| go 1.16 | ||
|
|
||
| require ( | ||
| github.com/elastic/go-sysinfo v1.4.0 | ||
| github.com/fsnotify/fsnotify v1.4.7 | ||
| github.com/go-cmd/cmd v1.2.0 | ||
| github.com/jviney/go-proc v0.2.0 | ||
| github.com/nanoscopic/ujsonin v1.9.0 | ||
| github.com/sirupsen/logrus v1.4.2 | ||
| github.com/elastic/go-sysinfo v1.8.1 | ||
| github.com/fsnotify/fsnotify v1.6.0 | ||
| github.com/go-cmd/cmd v1.4.1 | ||
| github.com/nanoscopic/ujsonin v1.13.0 | ||
| github.com/sirupsen/logrus v1.9.0 | ||
| github.com/zeromq/goczmq v4.1.0+incompatible | ||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,7 +115,7 @@ func proc_device_ios_unit( o ProcOptions, uuid string, curIP string) { | |
| return true | ||
| } | ||
| o.procName = "stf_device_ios" | ||
| o.binary = "/usr/local/opt/node@12/bin/node" | ||
| o.binary = "/usr/local/opt/node@14/bin/node" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does latest STF now require node 14? I set it this way just because it was what was installed on my machine. Really this should be changed to auto-detect which Node is installed and use the latest acceptable version. ( which may not be the latest if STF itself doesn't support the latest. )
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. node@12 now is more unavailable in Homebrew: For this reason, the version is raised to the minimum accessible and check working provider on node@14. Current used version NodeJS in STF view 17: I think that updating the version of NodeJs is actually better done as part of a separate task. There is a PR about this: |
||
| o.startDir = "./repos/stf-ios-provider" | ||
| proc_generic( o ) | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see any issue with updating the base requirement to 1.16. I am curious if there is any specific need to do so?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file was generated on version 16, left it as it is.
Reason - 1.12 is deprecated and more unavailable in Homebrew:
https://formulae.brew.sh/formula/go#default
1.16 now the most wounding available version