00:08:22 seems something odd in the pxe bin , now it just stalls on the menu I'll rebuild it again 00:29:44 just reading about this to have some pointers on how to debug this ipxe issue https://smartos.org/bugview/OS-8138 12:29:31 Is Jenkins the only ci tool that works well on Illumos ? 12:50:22 buildbot also works 18:02:46 jperkin: was trying to run gocd https://github.com/gocd/gocd https://github.com/gocd/gocd and ran into "jvm 1 | WrapperManager: /root/gocd/go-agent-22.3.0/wrapper/libwrapper-solaris-x86-64.so: ld.so.1: java: fatal: /root/gocd/go-agent-22.3.0/wrapper/libwrapper-solaris-x86-64.so: unknown capability: 4006398336", ever see anything like this, or know how I might be able to get this to run in a zone? 18:06:28 not seen that before, is that some library that was shipped with the software? might be built against solaris instead of illumos, hopefully it'll be possible to build a native one 18:07:42 Trying to compile it now but looks like gradlew is throwing me an error now 18:07:45 javax.net.ssl.SSLException: Received fatal alert: bad_record_mac 18:08:16 Tried using the gradle from pkgin, but it asked for 7 * 18:08:48 https://gist.github.com/Smithx10/c2a0df0f75fe963c224d9d0317683d48 18:10:52 it's a leaf package and looks straight-forward to update, can take a look at doing that on monday 18:13:01 yea, looks like I keep getting some > Received fatal alert: bad_record_mac all over the place 18:13:10 Guessing this has something to deal with ssl, thanks for taking a peak 18:27:27 looks like bad_record_mac has something to do with tls versions nothing can ever just buiiiiillllld <3 18:33:27 so strange, it just started to not toss that error lol *has no clue why* 19:13:17 lol, looks like it uses https://wrapper.tanukisoftware.com/doc/english/download.jsp#stable why is everything so difficult lol 19:16:13 yeh who knows what's in that blob and what platform it was built on 19:16:31 not something I'd be putting anywhere near my systems.. 19:18:03 yea 19:18:16 I tried grabbing the source and building it but got a ld error 19:18:34 It looks like they didnt use it prior, gonna investigate that approach maybe 19:26:10 Cool, looks like that was the only issue 20:19:18 Smithx10: There's always https://github.com/oxidecomputer/buildomat ! :D 20:23:51 jclulow: oooo 22:13:29 jclulow: might be too raw for my manager to understand lol 22:13:46 Yeah it's pretty early 22:14:13 I do think it’s time to get away from Java for a build server 22:15:21 Yeah I wrote buildomat because I was uninterested in both GitHub Actions and Jenkins 22:15:39 Looks like itd take some work to make it work on premises with out aws ? 22:15:56 Or can I just pop that rust agent on a machine and connect it to the core *? 22:16:01 It'll need another factory 22:16:07 to create VMs on whatever your infrastructure is 22:16:10 But the agent should work as-is 22:17:23 We use gitea, I see it was written for connecting to github 22:17:51 How hard to make it look at a git repo ? 22:18:40 It's in two pieces, architecturally: a core API that lets you run jobs 22:18:53 and a GitHub integration component that uses the core API to run jobs on behalf of GitHub events 22:19:08 If you wanted to plug it into something else you would just need a component that looks at the thing you want to react to, and creates jobs 22:20:00 There is a CLI client for the core API that I often use directly for testing and tinkering