-
neirac
seems something odd in the pxe bin , now it just stalls on the menu I'll rebuild it again
-
neirac
just reading about this to have some pointers on how to debug this ipxe issue
smartos.org/bugview/OS-8138
-
Smithx10
Is Jenkins the only ci tool that works well on Illumos ?
-
wiedi_
buildbot also works
-
Smithx10
jperkin: was trying to run gocd
github.com/gocd/gocd 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?
-
jperkin
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
-
Smithx10
Trying to compile it now but looks like gradlew is throwing me an error now
-
Smithx10
javax.net.ssl.SSLException: Received fatal alert: bad_record_mac
-
Smithx10
Tried using the gradle from pkgin, but it asked for 7 *
-
Smithx10
-
jperkin
it's a leaf package and looks straight-forward to update, can take a look at doing that on monday
-
Smithx10
yea, looks like I keep getting some > Received fatal alert: bad_record_mac all over the place
-
Smithx10
Guessing this has something to deal with ssl, thanks for taking a peak
-
Smithx10
looks like bad_record_mac has something to do with tls versions nothing can ever just buiiiiillllld <3
-
Smithx10
so strange, it just started to not toss that error lol *has no clue why*
-
Smithx10
lol, looks like it uses
wrapper.tanukisoftware.com/doc/english/download.jsp#stable why is everything so difficult lol
-
jperkin
yeh who knows what's in that blob and what platform it was built on
-
jperkin
not something I'd be putting anywhere near my systems..
-
Smithx10
yea
-
Smithx10
I tried grabbing the source and building it but got a ld error
-
Smithx10
It looks like they didnt use it prior, gonna investigate that approach maybe
-
Smithx10
Cool, looks like that was the only issue
-
jclulow
-
Smithx10
jclulow: oooo
-
Smithx10
jclulow: might be too raw for my manager to understand lol
-
jclulow
Yeah it's pretty early
-
Smithx10
I do think it’s time to get away from Java for a build server
-
jclulow
Yeah I wrote buildomat because I was uninterested in both GitHub Actions and Jenkins
-
Smithx10
Looks like itd take some work to make it work on premises with out aws ?
-
Smithx10
Or can I just pop that rust agent on a machine and connect it to the core *?
-
jclulow
It'll need another factory
-
jclulow
to create VMs on whatever your infrastructure is
-
jclulow
But the agent should work as-is
-
Smithx10
We use gitea, I see it was written for connecting to github
-
Smithx10
How hard to make it look at a git repo ?
-
jclulow
It's in two pieces, architecturally: a core API that lets you run jobs
-
jclulow
and a GitHub integration component that uses the core API to run jobs on behalf of GitHub events
-
jclulow
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
-
jclulow
There is a CLI client for the core API that I often use directly for testing and tinkering