Interesting ... what's your QA process? Do you have a staging environment where you try stuff out (looking for bugs) before pushing to production?
Deploying at GitHub
21–30 of 61 posts
Re: Deploying at GitHub
#22Earlier quoted context omitted.
Github itself is a Github project, therefore using anything other than the API would be some code duplication. Merging, Pull-Requests, Branches, Issues: all this is already covered when using the normal API. I'm sure it could be "more efficient" when having code explicitely for this purpose, but then again you have to maintain to different code bases which do the same.
You either maintain a codebase that calls out to the Github API or a codebase that calls out to Git? What's the difference?
Re: Deploying at GitHub
#23Encouraging to know this model scales to 100 employees at least. Purely out of intellectual interest, I wonder if a company the size of Google or Facebook could also ship in this way, or if the whole release manager/team is essential.
Sarbanes-Oxley puts a big damper on production deployments at big companies. I don't fully understand it so I won't try to explain it. (I will complain though: the law says developers shouldn't have control over production systems. If that's a requirement, who's going to write the software?)
Re: Deploying at GitHub
#24Re: Deploying at GitHub
#25If GitHub uses GitHub to deploy GitHub, what happens when GitHub goes down?
Re: Deploying at GitHub
#26WOW . 175 deploys in one day?
Re: Deploying at GitHub
#27Encouraging to know this model scales to 100 employees at least. Purely out of intellectual interest, I wonder if a company the size of Google or Facebook could also ship in this way, or if the whole release manager/team is essential.
Sarbanes-Oxley puts a big damper on production deployments at big companies. I don't fully understand it so I won't try to explain it. (I will complain though: the law says developers shouldn't have control over production systems. If that's a requirement, who's going to write the software?)
Re: Deploying at GitHub
#28Earlier quoted context omitted.
Sarbanes-Oxley puts a big damper on production deployments at big companies. I don't fully understand it so I won't try to explain it. (I will complain though: the law says developers shouldn't have control over production systems. If that's a requirement, who's going to write the software?)
Wait, what? Could someone elaborate on S-O restricting developer control over production systems?
In my experience, SOX usually ends up meaning that developers don't have access to production systems, or significantly limited access. However, a continuous deployment system should generally be very much in the spirit of SOX, in that it's pretty hard to do without well-defined, highly-repeatable, automated and auditable processes.
Re: Deploying at GitHub
#29Interesting ... what's your QA process? Do you have a staging environment where you try stuff out (looking for bugs) before pushing to production?
We have a staging environment, but its really only used for really big changes that might need to be experimented with before being deployed. We can also deploy a branch to a single front end to observe how it behaves with a subset of the traffic, and roll it back quickly if needed. Also, most large user-facing features are released as "staff-only" first, so we as GitHub users are able to play around with it for a fe…
Re: Deploying at GitHub
#30Earlier quoted context omitted.
We have a staging environment, but its really only used for really big changes that might need to be experimented with before being deployed. We can also deploy a branch to a single front end to observe how it behaves with a subset of the traffic, and roll it back quickly if needed. Also, most large user-facing features are released as "staff-only" first, so we as GitHub users are able to play around with it for a fe…
How do you guys release features as "staff-only"? Do you have some internal tool that manages that?