curl -X POST --user user:apitoken http://server/job/JOB_NAME/build?delay=0sec
Api token:
http://server/user/USER_NAME/configure
Notes and comments from ORM Designer development
curl -X POST --user user:apitoken http://server/job/JOB_NAME/build?delay=0sec
Api token:
http://server/user/USER_NAME/configure
edit file sudoers
sudo nano /etc/sudoers or sudo visudo
and modify
%sudo ALL=(ALL) ALL
to
%sudo ALL=(ALL) NOPASSWD: ALL
and add following line to the end of the file:
user ALL=NOPASSWD: ALL
When editing sudoers, it’s necessary to be very careful. Any error cause that you will not be able to edit this file anymore and also not to use sudo ;-).
Here are links how to fix it (verified 😉 )
After re-installing our MacOS building machine which we’re using for ORM Designer deploy, we started to getting following message:
./OrmDesigner2.app: User interaction is not allowed.
After short searching on the internet I found it’s required to click on “Always Allow” dialog…. which unfortunately we don’t have on the console ;-).
The trick is in the keychain unlock. For this purpose we can use following command:
security unlock-keychain -pPASSWORD ~/Library/Keychains/login.keychain
That’s all. After this command I’m able to sign my application from Jenkinks command line again.