HTMLPublisher CORS blocking fonts

2020-02-20 Thread Kris Luhr
Hi, I have a Jenkins pipeline that as part of the build uses Storybook to create a snapshot of our components. This is done by letting storybook create a static site that uses frames to show the displayed component. As part of the build I want to publish this site so we can monitor the look of

how to configure jenkins to use jenkins CLI by ssh

2020-02-20 Thread oneslide icywater
with https://jenkins.io/doc/book/managing/cli/ ,I successfully configure jenkins to use its CLI by app token and user-password,but ssh failed. I run my jenkins in docker in local testing vm。 docker container run --name jenkins-blueocean --rm --detach \ --network jenkins --env DOCKER_HOST=tcp:/

Invoking the /build endpoint for a job with curl dropping parameters not explicitly passed via json

2020-02-20 Thread Jay Hayes
Hello, This seems like a bug to me but, if so, I don't know how it hasn't been reported which makes me think I'm overlooking something obvious. When I invoke a jenkins job via curl and send the parameters as JSON data\payload to the job's /build endpoint any parameters I don't pass in the payl

Re: how to configure jenkins to use jenkins CLI by ssh

2020-02-20 Thread Dirk Heinrichs
Am Donnerstag, den 20.02.2020, 06:06 -0800 schrieb oneslide icywater: sshd isn't running How Can I solve it ? I'm confused. Do you want to access Jenkins itself via SSH (Jenkins' internal SSH server) or the Docker container in which Jenkins runs? Bye... Dirk -- Dirk Heinrichs Senior Systems

Re: Invoking the /build endpoint for a job with curl dropping parameters not explicitly passed via json

2020-02-20 Thread Mark Waite
I suspect that is intentional. I assume that the '/build' end point is not intended for use with parameters. If you want to pass parameters, use the /buildWithParameters end point. On Thu, Feb 20, 2020 at 7:35 AM Jay Hayes wrote: > Hello, > > This seems like a bug to me but, if so, I don't kn

Re: Invoking the /build endpoint for a job with curl dropping parameters not explicitly passed via json

2020-02-20 Thread Jay Hayes
Fair enough but, for whatever reason, I can only get the parameters passed as JSON data when I use the /build endpoint. If I POST to the /buildWithParameters endpoint, all parameters show up in the invoked build but with no values (other than defaults). Using the same example with the followin