-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
111 lines (107 loc) · 4.42 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
REPO_URLS=\
[email protected]:Homebrew/homebrew-cask.git \
[email protected]:Homebrew/homebrew-core.git \
[email protected]:JuliaLang/julia.git \
[email protected]:LadybirdBrowser/ladybird.git \
[email protected]:MicrosoftDocs/azure-devops-docs.git \
[email protected]:MicrosoftDocs/azure-docs.git \
[email protected]:MicrosoftDocs/sql-docs.git \
[email protected]:MicrosoftDocs/visualstudio-docs.git \
[email protected]:NixOS/nixpkgs.git \
[email protected]:PowerShell/PowerShell.git \
[email protected]:SeleniumHQ/selenium.git \
[email protected]:WebKit/WebKit.git \
[email protected]:ansible/ansible.git \
[email protected]:apache/airflow.git \
[email protected]:awsdocs/aws-cloudformation-user-guide.git \
[email protected]:awsdocs/aws-doc-sdk-examples.git \
[email protected]:awsdocs/aws-lambda-developer-guide.git \
[email protected]:chef/chef.git \
[email protected]:chromium/chromium.git \
[email protected]:denoland/deno.git \
[email protected]:django/django.git \
[email protected]:docker/docker.github.io.git \
[email protected]:dotnet/AspNetCore.Docs.git \
[email protected]:dotnet/AspNetDocs.git \
[email protected]:dotnet/dotnet-api-docs.git \
[email protected]:elixir-lang/elixir.git \
[email protected]:facebook/docusaurus.git \
[email protected]:facebook/react-native.git \
[email protected]:facebook/react.git \
[email protected]:flutter/flutter.git \
[email protected]:freeCodeCamp/freeCodeCamp.git \
[email protected]:gatsbyjs/gatsby.git \
[email protected]:github/opensource.guide.git \
[email protected]:golang/go.git \
[email protected]:gradle/gradle.git \
[email protected]:home-assistant/core.git \
[email protected]:home-assistant/home-assistant.io.git \
[email protected]:jenkinsci/jenkins.git \
[email protected]:kubernetes/kubernetes.git \
[email protected]:laravel/framework.git \
[email protected]:matplotlib/matplotlib.git \
[email protected]:mdn/content.git \
[email protected]:microsoft/TypeScript.git \
[email protected]:microsoft/playwright.git \
[email protected]:microsoft/vscode-docs.git \
[email protected]:moby/moby.git \
[email protected]:mozilla/gecko-dev.git \
[email protected]:mrdoob/three.js.git \
[email protected]:mui/material-ui.git \
[email protected]:nodejs/node.git \
[email protected]:numpy/numpy.git \
[email protected]:opencv/opencv.git \
[email protected]:pallets/flask.git \
[email protected]:pandas-dev/pandas.git \
[email protected]:phoenixframework/phoenix.git \
[email protected]:puppeteer/puppeteer.git \
[email protected]:pytorch/pytorch.git \
[email protected]:rails/rails.git \
[email protected]:raspberrypi/documentation.git \
[email protected]:reactjs/react.dev.git \
[email protected]:rust-lang/rust.git \
[email protected]:scikit-learn/scikit-learn.git \
[email protected]:servo/servo.git \
[email protected]:sphinx-doc/sphinx.git \
[email protected]:spring-projects/spring-boot.git \
[email protected]:spring-projects/spring-framework.git \
[email protected]:spring-projects/spring-security.git \
[email protected]:sveltejs/svelte.git \
[email protected]:swiftlang/swift.git \
[email protected]:symfony/symfony-docs.git \
[email protected]:symfony/symfony.git \
[email protected]:tc39/ecma262.git \
[email protected]:tensorflow/tensorflow.git \
[email protected]:tidyverse/ggplot2.git \
[email protected]:travis-ci/docs-travis-ci-com.git \
[email protected]:twbs/bootstrap.git \
[email protected]:vercel/next.js.git \
[email protected]:vitejs/vite.git \
[email protected]:vuejs/vue.git \
[email protected]:w3c/csswg-drafts.git \
[email protected]:web-platform-tests/wpt.git \
[email protected]:webpack/webpack.js.org.git \
[email protected]:whatwg/html.git \
rank:
node tools/git-pulse-rank.js
clones:
mkdir build || true; \
cd build; \
for url in $(REPO_URLS); do \
git clone $$url || true; \
done; \
git clone [email protected]:dotnet/docs.git dotnet-docs; \
git clone [email protected]:github/docs.git github-docs; \
git clone [email protected]:laravel/docs.git laravel-docs; \
git clone [email protected]:mongodb/docs.git mongodb-docs; \
git clone [email protected]:tensorflow/docs.git tensorflow-docs; \
git clone [email protected]:vuejs/docs.git vuejs-docs; \
git clone [email protected]:flutter/website.git flutter-website; \
git clone [email protected]:kubernetes/website.git kubernetes-website
snapshots:
cd build; \
for dir in */; do \
cd $$dir && git pull && time bash ../../tools/git-pulse; \
cp *$$(date +"%Y-%m-%d")-pulse.* ../..; \
cd ..; \
done;