-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
82 lines (78 loc) · 2.73 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
REPO_URLS=\
[email protected]:Maps4HTML/Web-Map-Custom-Element.git \
[email protected]:WICG/ua-client-hints.git \
[email protected]:WICG/webpackage.git \
[email protected]:WebAssembly/WASI.git \
[email protected]:WebAssembly/spec.git \
[email protected]:WebAudio/web-audio-api.git \
[email protected]:immersive-web/webxr.git \
[email protected]:mdn/content.git \
[email protected]:tc39/ecma262.git \
[email protected]:w3c/IndexedDB.git \
[email protected]:w3c/ServiceWorker.git \
[email protected]:w3c/aria-practices.git \
[email protected]:w3c/aria.git \
[email protected]:w3c/automotive.git \
[email protected]:w3c/chinese-ig.git \
[email protected]:w3c/clreq.git \
[email protected]:w3c/css-houdini-drafts.git \
[email protected]:w3c/csswg-drafts.git \
[email protected]:w3c/did-core.git \
[email protected]:w3c/did-spec-registries.git \
[email protected]:w3c/epub-specs.git \
[email protected]:w3c/i18n-drafts.git \
[email protected]:w3c/manifest.git \
[email protected]:w3c/media-source.git \
[email protected]:w3c/mediacapture-main.git \
[email protected]:w3c/payment-request.git \
[email protected]:w3c/permissions.git \
[email protected]:w3c/respec.git \
[email protected]:w3c/sdw.git \
[email protected]:w3c/sensors.git \
[email protected]:w3c/trace-context.git \
[email protected]:w3c/uievents.git \
[email protected]:w3c/vc-data-model.git \
[email protected]:w3c/w3process.git \
[email protected]:w3c/wai-about-wai.git \
[email protected]:w3c/wai-audiences.git \
[email protected]:w3c/wai-intro-wcag.git \
[email protected]:w3c/wai-tutorials.git \
[email protected]:w3c/wai-website.git \
[email protected]:w3c/wcag.git \
[email protected]:w3c/web-advertising.git \
[email protected]:w3c/web-nfc.git \
[email protected]:w3c/web-performance.git \
[email protected]:w3c/web-share.git \
[email protected]:w3c/webappsec-csp.git \
[email protected]:w3c/webappsec-trusted-types.git \
[email protected]:w3c/webappsec.git \
[email protected]:w3c/webauthn.git \
[email protected]:w3c/webcodecs.git \
[email protected]:w3c/webcrypto.git \
[email protected]:w3c/webdriver.git \
[email protected]:w3c/webidl2.js.git \
[email protected]:w3c/webrtc-pc.git \
[email protected]:w3c/wot-thing-description.git \
[email protected]:w3c/wot.git \
[email protected]:web-platform-tests/wpt.git \
[email protected]:whatwg/dom.git \
[email protected]:whatwg/fetch.git \
[email protected]:whatwg/html.git \
[email protected]:whatwg/streams.git \
[email protected]:whatwg/url.git \
[email protected]:whatwg/webidl.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
snapshots:
cd build; \
for dir in */; do \
cd $$dir && git pull && time bash ../../tools/git-pulse; \
cp *-pulse.* ../..; \
cd ..; \
done;