Erik Blomqvist

Results 17 comments of Erik Blomqvist

I have the same problem. Was just about to report it. Thanks for saving me the trouble.

This seems to have been fixed in Xcode 9.0.1, but it still doesn't seem like you can run them individually. I'm not sure if that was working in Xcode 8,...

I also got the `No known class method for selector CucumberishSwiftInit` error. Would be nice if someone could add `@objc` to the wiki. It's a shame that github doesn't support...

@jetersen @timja Thanks for replying so quickly. I don't have any experience with Jenkins plugin development and this is my first experience with JCasC. I think I will have a...

@jetersen It's a bit crude, but here you go: ``` groovy: - script: | import org.jenkinsci.plugins.scriptsecurity.scripts.* ScriptApproval scriptApproval = ScriptApproval.get() scriptApproval.clearApprovedSignatures() [ "003f7e63f60f4d2787313fbc4a4b12cd6ed75cf8", "017d0db438428731cd600b6ebda805065433520f", "07b027fd04a8f55c2b71529126a2eb44e77360c4", "0843bdaeb52dd48a96bc460f53c9ecaff0eccf25", "15b8e6fba9f8a32d1ef75a8e9c7c5dc5b240167d", "20f2ecd49fe9bf3c9cf927264c6fdfeea2cddb36", "3648fafa37c931ccb3f3687c67b956cb2b88b556", "3c37469928b478b666246aa59467b0abe97218f9",...

For anyone watching this issue, I reported it for the script-security-plugin in JIRA: https://issues.jenkins-ci.org/browse/JENKINS-62708

> In a perfect world we could compare `export` with incoming config to compute a delta, but we are far from being able to generate a valid export. So hard...

> Because Ruby 3.3 exists now. > > `brew install ruby` and `brew install ruby@3` always point to the latest. If you're wanting to pin to a specific minor version...

I seem to have figured out a way to do it. It's by no means a pretty solution, but basically, `requestShell` returns a stream that you can connect just like...

I found it: ``` await ssh.execCommand('screen -r', { execOptions: { pty: true } }) ``` Would have saved me a lot of time if there was a section about it...