Created
October 8, 2009 02:44
-
-
Save AlexAstroCat/204667 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
USER=hudson | |
PASS=password | |
HUDSON_URL=http://$USER:$PASS@<my-build-server>:8080 | |
JOB=$1 | |
TOKEN=$2 | |
CAUSE=$2 | |
set -x | |
lwp-request -ds "$HUDSON_URL/job/$JOB/build?token=$TOKEN" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for writing up such a neat article about CI for iOS on Jenkins.
Many ways to skin a cat, of course.