Skip to content

Commit 420ceb6

Browse files
chore(jenkins): do not publish to code.angularjs.org snapshot
While the firewall continues to block the update ports we will not try to publish there. This will be fixed when we move to hosting the sites on Firebase. This means that successful builds on master will not automatically update code.angularjs.org, this will affect: * https://code.angularjs.org/snapshot, which people often use to check latest features * https://docs.angularjs.org, which is supposed to display the docs for the latest master As it turns out we can manually partially trigger an update by browsing to https://code.angularjs.org/gitFetchSite.php but we just can’t guarantee that we will update both the round robin servers.
1 parent 32f4645 commit 420ceb6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/code.angularjs.org/publish.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ function _update_code() {
6262

6363
for backend in "$@" ; do
6464
echo "-- Refreshing code.angularjs.org: backend=$backend"
65-
curl http://$backend:8003/gitFetchSite.php
65+
66+
# FIXME: We gave up publishing to code.angularjs.org because the GCE automatically removes firewall
67+
# rules that allow access to port 8003.
68+
69+
# curl http://$backend:8003/gitFetchSite.php
6670
done
6771
}
6872

0 commit comments

Comments
 (0)