-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
58 lines (49 loc) · 1.18 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
#ALL_VIEWS := \
# cpp-event \
# js-yaml-json \
# java-json \
# java-event \
# libyaml-event \
# nimyaml-event \
# perl5-pegex-event \
# perl5-pm-pl \
# perl5-pm-json \
# perl5-pp-event \
# perl5-syck-pl \
# perl5-syck-json \
# perl5-tiny-pl \
# perl5-tiny-json \
# perl5-xs-pl \
# perl5-xs-json \
# perl6-json \
# perl6-p6 \
# pyyaml-event \
# ruamel-event \
# ruby-json \
#------------------------------------------------------------------------------
build: data matrix
wget -O list.yaml https://raw.githubusercontent.com/yaml/yaml-runtimes/master/list.yaml
rm -r matrix/expected/
./bin/expected
./bin/run-framework-tests --all
./bin/compare-framework-tests --all
./bin/create-matrix
./bin/highlight
#$(ALL_VIEWS): data matrix
# time ./bin/run-framework-tests --framework $@
# ./bin/create-matrix
matrix:
mkdir -p $@
yaml-test-suite:
git clone https://github.com/yaml/yaml-test-suite $@
data: yaml-test-suite
make -C yaml-test-suite data
cd yaml-test-suite/data && git checkout data-2022-01-17
gh-pages:
-git branch --track $@ origin/$@
git worktree add --force $@ gh-pages
update-gh-pages:
rsync -a --delete --stats matrix/html/* gh-pages/
clean:
rm -fr data matrix
git clean -dxf