-
Notifications
You must be signed in to change notification settings - Fork 34
/
dobi.yaml
2448 lines (2448 loc) · 34.8 KB
/
dobi.yaml
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is auto-generated from boxes.yml. Please don't edit directly.
---
meta:
project: esolang-box
default: all
alias=all:
tasks:
- base
- build-base
- multi-reader
- osecpu
- osecpu-aska
- rescript
- codemania
- 3var
- axo
- befunge93
- befunge98
- seed
- c-gcc
- dis
- glass
- r
- ruby
- ruby-trunk
- golfscript
- hexagony
- stackcats
- standback
- starry
- cy
- labyrinth
- typhon
- alice
- wake
- reversed-c
- copos-rb
- golfish
- pxem
- arithmetic
- vim
- autovim
- v-vim
- pyramid-scheme
- brainfuck-esomer
- goruby
- ruby1
- grass
- modanshogi
- ppap
- make
- bash-pure
- bash-busybox
- fish-shell-pure
- zsh-pure
- malbolge
- piet
- python1
- rail
- simula
- snowman
- streem
- unlambda
- verilog
- wierd
- wordcpu
- aheui
- beatnik
- blc
- spl
- intercal
- lolcode
- minus
- taxi
- adjust
- braille
- rust
- cubically
- sceql
- apl
- wat
- lazyk
- doubleplusungood
- llvm-ir
- hanoi_stack
- dotnet-base
- csharp-dotnet
- fsharp-dotnet
- visualbasic-dotnet
- fortran
- ring
- snobol
- cobol
- fetlang
- alphabeta
- tcl
- rapira
- vlang
- cyclicbrainfuck
- olang
- wren
- clisp-sbcl
- python2
- haystack
- stuck
- unicat
- unreadable
- zombie
- aubergine
- path
- recurse
- fernando
- gs2
- logicode
- minimal2d
- i4004asm
- suzy
- snusp
- brainfuck-esotope
- java
- arnoidc
- evil
- js-rhino
- floater
- cjam
- convex
- kotlin
- whenever
- xslt
- csharp
- function2d
- produire
- z80
- bubble-sort
- classic-music-theory
- jq
- node
- unicue
- beam
- cubix
- japt
- stop
- htms
- maybelater
- nadesiko
- floating
- qlb
- calc
- nuts
- canvas
- wysiscript
- tetris
- wenyan
- hakerh-base
- encapsulation
- functional
- seclusion
- serenity
- transceternal
- compile-time-typescript
- emojifunge
- octave
- matl
- perl
- slashes
- element
- php
- irc
- python3
- ffb
- ezhil
- exchangeif
- ubergenes
- 2sable
- fish
- arcyou
- bots
- emoji
- zucchini
- cardinal
- hbcht
- jelly
- jellyfish
- width
- asciidots
- picfunge
- iwashi
- hypertorus
- gaia
- triangularity
- backhand
- mines
- mao
- pure-folders
- cmd
- lua
- rprogn
- ocaml
- coq
- haskell
- whitespace
- erlang
- elixir
- 05ab1e
- awk
- perl6
- ballerina
- sed
- m4
- racket
- gnuplot
- golang
- braintwist
- tsp
- zig
- ffmpeg
- ubuntu-base
- ada
- crystal
- d-dmd
- d-gdc
- emojicode
- powershell
- ed
- fugue
- x86asm-nasm
- swift
- cpp-clang
- cpp-compile-time-clang
- moo
- abc
- tex
- bibtex
- egison
- sqlite3
- imagemagick
- apache2-rewrite
- nim-lang
- csound
- brainfuck-bfi
alias=tag-all:
tasks:
- base:tag
- build-base:tag
- multi-reader:tag
- osecpu:tag
- osecpu-aska:tag
- rescript:tag
- codemania:tag
- 3var:tag
- axo:tag
- befunge93:tag
- befunge98:tag
- seed:tag
- c-gcc:tag
- dis:tag
- glass:tag
- r:tag
- ruby:tag
- ruby-trunk:tag
- golfscript:tag
- hexagony:tag
- stackcats:tag
- standback:tag
- starry:tag
- cy:tag
- labyrinth:tag
- typhon:tag
- alice:tag
- wake:tag
- reversed-c:tag
- copos-rb:tag
- golfish:tag
- pxem:tag
- arithmetic:tag
- vim:tag
- autovim:tag
- v-vim:tag
- pyramid-scheme:tag
- brainfuck-esomer:tag
- goruby:tag
- ruby1:tag
- grass:tag
- modanshogi:tag
- ppap:tag
- make:tag
- bash-pure:tag
- bash-busybox:tag
- fish-shell-pure:tag
- zsh-pure:tag
- malbolge:tag
- piet:tag
- python1:tag
- rail:tag
- simula:tag
- snowman:tag
- streem:tag
- unlambda:tag
- verilog:tag
- wierd:tag
- wordcpu:tag
- aheui:tag
- beatnik:tag
- blc:tag
- spl:tag
- intercal:tag
- lolcode:tag
- minus:tag
- taxi:tag
- adjust:tag
- braille:tag
- rust:tag
- cubically:tag
- sceql:tag
- apl:tag
- wat:tag
- lazyk:tag
- doubleplusungood:tag
- llvm-ir:tag
- hanoi_stack:tag
- dotnet-base:tag
- csharp-dotnet:tag
- fsharp-dotnet:tag
- visualbasic-dotnet:tag
- fortran:tag
- ring:tag
- snobol:tag
- cobol:tag
- fetlang:tag
- alphabeta:tag
- tcl:tag
- rapira:tag
- vlang:tag
- cyclicbrainfuck:tag
- olang:tag
- wren:tag
- clisp-sbcl:tag
- python2:tag
- haystack:tag
- stuck:tag
- unicat:tag
- unreadable:tag
- zombie:tag
- aubergine:tag
- path:tag
- recurse:tag
- fernando:tag
- gs2:tag
- logicode:tag
- minimal2d:tag
- i4004asm:tag
- suzy:tag
- snusp:tag
- brainfuck-esotope:tag
- java:tag
- arnoidc:tag
- evil:tag
- js-rhino:tag
- floater:tag
- cjam:tag
- convex:tag
- kotlin:tag
- whenever:tag
- xslt:tag
- csharp:tag
- function2d:tag
- produire:tag
- z80:tag
- bubble-sort:tag
- classic-music-theory:tag
- jq:tag
- node:tag
- unicue:tag
- beam:tag
- cubix:tag
- japt:tag
- stop:tag
- htms:tag
- maybelater:tag
- nadesiko:tag
- floating:tag
- qlb:tag
- calc:tag
- nuts:tag
- canvas:tag
- wysiscript:tag
- tetris:tag
- wenyan:tag
- hakerh-base:tag
- encapsulation:tag
- functional:tag
- seclusion:tag
- serenity:tag
- transceternal:tag
- compile-time-typescript:tag
- emojifunge:tag
- octave:tag
- matl:tag
- perl:tag
- slashes:tag
- element:tag
- php:tag
- irc:tag
- python3:tag
- ffb:tag
- ezhil:tag
- exchangeif:tag
- ubergenes:tag
- 2sable:tag
- fish:tag
- arcyou:tag
- bots:tag
- emoji:tag
- zucchini:tag
- cardinal:tag
- hbcht:tag
- jelly:tag
- jellyfish:tag
- width:tag
- asciidots:tag
- picfunge:tag
- iwashi:tag
- hypertorus:tag
- gaia:tag
- triangularity:tag
- backhand:tag
- mines:tag
- mao:tag
- pure-folders:tag
- cmd:tag
- lua:tag
- rprogn:tag
- ocaml:tag
- coq:tag
- haskell:tag
- whitespace:tag
- erlang:tag
- elixir:tag
- 05ab1e:tag
- awk:tag
- perl6:tag
- ballerina:tag
- sed:tag
- m4:tag
- racket:tag
- gnuplot:tag
- golang:tag
- braintwist:tag
- tsp:tag
- zig:tag
- ffmpeg:tag
- ubuntu-base:tag
- ada:tag
- crystal:tag
- d-dmd:tag
- d-gdc:tag
- emojicode:tag
- powershell:tag
- ed:tag
- fugue:tag
- x86asm-nasm:tag
- swift:tag
- cpp-clang:tag
- cpp-compile-time-clang:tag
- moo:tag
- abc:tag
- tex:tag
- bibtex:tag
- egison:tag
- sqlite3:tag
- imagemagick:tag
- apache2-rewrite:tag
- nim-lang:tag
- csound:tag
- brainfuck-bfi:tag
image=base:
image: esolang/base
context: boxes/base
tags:
- latest
- 2.4.0
depends: []
image=build-base:
image: esolang/build-base
context: boxes/build-base
tags:
- latest
- 2.4.0
depends:
- base
image=multi-reader:
image: esolang/multi-reader
context: boxes/multi-reader
tags:
- latest
- 2.4.0
depends:
- build-base
image=osecpu:
image: esolang/osecpu
context: boxes/osecpu
tags:
- latest
- 2.4.0
depends:
- build-base
image=osecpu-aska:
image: esolang/osecpu-aska
context: boxes/osecpu-aska
tags:
- latest
- 2.4.0
depends:
- build-base
image=rescript:
image: esolang/rescript
context: boxes/rescript
tags:
- latest
- 2.4.0
depends:
- build-base
image=codemania:
image: esolang/codemania
context: boxes/codemania
tags:
- latest
- 2.4.0
depends:
- build-base
image=3var:
image: esolang/3var
context: boxes/3var
tags:
- latest
- 2.4.0
depends:
- build-base
image=axo:
image: esolang/axo
context: boxes/axo
tags:
- latest
- 2.4.0
depends:
- build-base
image=befunge93:
image: esolang/befunge93
context: boxes/befunge93
tags:
- latest
- 2.4.0
depends:
- build-base
image=befunge98:
image: esolang/befunge98
context: boxes/befunge98
tags:
- latest
- 2.4.0
depends:
- build-base
image=seed:
image: esolang/seed
context: boxes/seed
tags:
- latest
- 2.4.0
depends:
- befunge98
image=c-gcc:
image: esolang/c-gcc
context: boxes/c-gcc
tags:
- latest
- 2.4.0
depends:
- build-base
image=dis:
image: esolang/dis
context: boxes/dis
tags:
- latest
- 2.4.0
depends:
- build-base
image=glass:
image: esolang/glass
context: boxes/glass
tags:
- latest
- 2.4.0
depends:
- build-base
image=r:
image: esolang/r
context: boxes/r
tags:
- latest
- 2.4.0
depends:
- build-base
image=ruby:
image: esolang/ruby
context: boxes/ruby
tags:
- latest
- 2.4.0
depends:
- build-base
image=ruby-trunk:
image: esolang/ruby-trunk
context: boxes/ruby-trunk
tags:
- latest
- 2.4.0
depends:
- ruby
image=golfscript:
image: esolang/golfscript
context: boxes/golfscript
tags:
- latest
- 2.4.0
depends:
- ruby
image=hexagony:
image: esolang/hexagony
context: boxes/hexagony
tags:
- latest
- 2.4.0
depends:
- ruby
image=stackcats:
image: esolang/stackcats
context: boxes/stackcats
tags:
- latest
- 2.4.0
depends:
- ruby
image=standback:
image: esolang/standback
context: boxes/standback
tags:
- latest
- 2.4.0
depends:
- ruby
image=starry:
image: esolang/starry
context: boxes/starry
tags:
- latest
- 2.4.0
depends:
- ruby
image=cy:
image: esolang/cy
context: boxes/cy
tags:
- latest
- 2.4.0
depends:
- ruby
image=labyrinth:
image: esolang/labyrinth
context: boxes/labyrinth
tags:
- latest
- 2.4.0
depends:
- ruby
image=typhon:
image: esolang/typhon
context: boxes/typhon
tags:
- latest
- 2.4.0
depends:
- ruby
image=alice:
image: esolang/alice
context: boxes/alice
tags:
- latest
- 2.4.0
depends:
- ruby
image=wake:
image: esolang/wake
context: boxes/wake
tags:
- latest
- 2.4.0
depends:
- ruby
image=reversed-c:
image: esolang/reversed-c
context: boxes/reversed-c
tags:
- latest
- 2.4.0
depends:
- ruby
image=copos-rb:
image: esolang/copos-rb
context: boxes/copos-rb
tags:
- latest
- 2.4.0
depends:
- ruby
image=golfish:
image: esolang/golfish
context: boxes/golfish
tags:
- latest
- 2.4.0
depends:
- ruby
image=pxem:
image: esolang/pxem
context: boxes/pxem
tags:
- latest
- 2.4.0
depends:
- ruby
image=arithmetic:
image: esolang/arithmetic
context: boxes/arithmetic
tags:
- latest
- 2.4.0
depends:
- ruby
image=vim:
image: esolang/vim
context: boxes/vim
tags:
- latest
- 2.4.0
depends:
- ruby
image=autovim:
image: esolang/autovim
context: boxes/autovim
tags:
- latest
- 2.4.0
depends:
- vim
image=v-vim:
image: esolang/v-vim
context: boxes/v-vim
tags:
- latest
- 2.4.0
depends:
- vim
image=pyramid-scheme:
image: esolang/pyramid-scheme
context: boxes/pyramid-scheme
tags:
- latest
- 2.4.0
depends:
- ruby
image=brainfuck-esomer:
image: esolang/brainfuck-esomer
context: boxes/brainfuck-esomer
tags:
- latest
- 2.4.0
depends:
- ruby
image=goruby:
image: esolang/goruby
context: boxes/goruby
tags:
- latest
- 2.4.0
depends:
- build-base
image=ruby1:
image: esolang/ruby1
context: boxes/ruby1
tags:
- latest
- 2.4.0
depends:
- build-base
image=grass:
image: esolang/grass
context: boxes/grass
tags:
- latest
- 2.4.0
depends:
- ruby1
image=modanshogi:
image: esolang/modanshogi
context: boxes/modanshogi
tags:
- latest
- 2.4.0
depends:
- ruby1
image=ppap:
image: esolang/ppap
context: boxes/ppap
tags:
- latest
- 2.4.0
depends:
- ruby1
image=make:
image: esolang/make
context: boxes/make
tags:
- latest
- 2.4.0
depends:
- build-base
image=bash-pure:
image: esolang/bash-pure
context: boxes/bash-pure
tags:
- latest
- 2.4.0
depends:
- build-base
image=bash-busybox:
image: esolang/bash-busybox
context: boxes/bash-busybox
tags:
- latest
- 2.4.0
depends:
- bash-pure
image=fish-shell-pure:
image: esolang/fish-shell-pure
context: boxes/fish-shell-pure
tags:
- latest
- 2.4.0
depends:
- build-base
image=zsh-pure:
image: esolang/zsh-pure
context: boxes/zsh-pure
tags:
- latest
- 2.4.0
depends:
- build-base
image=malbolge:
image: esolang/malbolge
context: boxes/malbolge
tags:
- latest
- 2.4.0
depends:
- build-base
image=piet:
image: esolang/piet
context: boxes/piet
tags:
- latest
- 2.4.0
depends:
- build-base
image=python1:
image: esolang/python1
context: boxes/python1
tags:
- latest
- 2.4.0
depends:
- build-base
image=rail:
image: esolang/rail
context: boxes/rail
tags:
- latest
- 2.4.0
depends:
- build-base
image=simula:
image: esolang/simula
context: boxes/simula
tags:
- latest
- 2.4.0
depends:
- build-base
image=snowman:
image: esolang/snowman
context: boxes/snowman
tags:
- latest
- 2.4.0
depends:
- build-base
image=streem:
image: esolang/streem
context: boxes/streem
tags:
- latest
- 2.4.0
depends:
- build-base
image=unlambda:
image: esolang/unlambda
context: boxes/unlambda
tags:
- latest
- 2.4.0
depends:
- build-base
image=verilog:
image: esolang/verilog
context: boxes/verilog
tags:
- latest
- 2.4.0
depends:
- build-base
image=wierd:
image: esolang/wierd
context: boxes/wierd
tags:
- latest
- 2.4.0
depends:
- build-base
image=wordcpu:
image: esolang/wordcpu
context: boxes/wordcpu
tags:
- latest
- 2.4.0
depends:
- build-base
image=aheui:
image: esolang/aheui
context: boxes/aheui
tags:
- latest
- 2.4.0
depends:
- build-base
image=beatnik:
image: esolang/beatnik
context: boxes/beatnik
tags:
- latest
- 2.4.0
depends:
- build-base
image=blc:
image: esolang/blc
context: boxes/blc
tags:
- latest
- 2.4.0
depends:
- build-base
image=spl:
image: esolang/spl
context: boxes/spl
tags:
- latest
- 2.4.0
depends:
- build-base
image=intercal:
image: esolang/intercal
context: boxes/intercal
tags:
- latest
- 2.4.0
depends:
- build-base
image=lolcode:
image: esolang/lolcode
context: boxes/lolcode
tags:
- latest
- 2.4.0
depends:
- build-base
image=minus:
image: esolang/minus
context: boxes/minus
tags:
- latest
- 2.4.0