-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-0669b64613.log
1006 lines (995 loc) · 50.3 KB
/
1.6.0-DEV-0669b64613.log
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
Julia Version 1.6.0-DEV.1153
Commit 0669b64613 (2020-10-07 09:01 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed IntelOpenMP_jll ────────────── v2018.0.3+0
Installed Opus_jll ───────────────────── v1.3.1+2
Installed Gettext_jll ────────────────── v0.20.1+6
Installed MKL_jll ────────────────────── v2020.2.254+0
Installed CairoMakie ─────────────────── v0.3.3
Installed ImageIO ────────────────────── v0.3.0
Installed Observables ────────────────── v0.3.2
Installed Distributions ──────────────── v0.23.12
Installed Ogg_jll ────────────────────── v1.3.4+1
Installed Showoff ────────────────────── v0.3.2
Installed Libgcrypt_jll ──────────────── v1.8.5+3
Installed SortingAlgorithms ──────────── v0.3.1
Installed Tables ─────────────────────── v1.1.0
Installed Xorg_xtrans_jll ────────────── v1.4.0+2
Installed FixedPointNumbers ──────────── v0.8.4
Installed Libiconv_jll ───────────────── v1.16.0+6
Installed Zlib_jll ───────────────────── v1.2.11+16
Installed FriBidi_jll ────────────────── v1.0.5+5
Installed x265_jll ───────────────────── v3.0.0+2
Installed StructArrays ───────────────── v0.4.4
Installed Xorg_libXext_jll ───────────── v1.3.4+3
Installed Compat ─────────────────────── v3.18.0
Installed Libuuid_jll ────────────────── v2.34.0+6
Installed Xorg_libX11_jll ────────────── v1.6.9+3
Installed PDMats ─────────────────────── v0.10.1
Installed NaNMath ────────────────────── v0.3.4
Installed DataAPI ────────────────────── v1.3.0
Installed GeometryBasics ─────────────── v0.3.3
Installed EllipsisNotation ───────────── v0.4.0
Installed OpenSpecFun_jll ────────────── v0.5.3+3
Installed LZO_jll ────────────────────── v2.10.0+2
Installed libpng_jll ─────────────────── v1.6.37+5
Installed FreeType2_jll ──────────────── v2.10.1+4
Installed StatsBase ──────────────────── v0.33.1
Installed FreeType ───────────────────── v3.0.1
Installed XML2_jll ───────────────────── v2.9.10+2
Installed ICU_jll ────────────────────── v67.1.0+1
Installed FFMPEG_jll ─────────────────── v4.3.1+2
Installed IntervalSets ───────────────── v0.5.1
Installed IndirectArrays ─────────────── v0.5.1
Installed Graphics ───────────────────── v1.0.2
Installed Interpolations ─────────────── v0.12.10
Installed SignedDistanceFields ───────── v0.4.0
Installed ColorBrewer ────────────────── v0.4.0
Installed Xorg_libXdmcp_jll ──────────── v1.1.3+3
Installed PaddedViews ────────────────── v0.5.5
Installed Pixman_jll ─────────────────── v0.38.4+4
Installed IteratorInterfaceExtensions ── v1.0.0
Installed UnicodeFun ─────────────────── v0.4.1
Installed Colors ─────────────────────── v0.12.4
Installed HarfBuzz_jll ───────────────── v2.6.1+9
Installed Cairo_jll ──────────────────── v1.16.0+5
Installed MosaicViews ────────────────── v0.2.3
Installed Reexport ───────────────────── v0.2.0
Installed LAME_jll ───────────────────── v3.100.0+2
Installed ColorTypes ─────────────────── v0.10.9
Installed FillArrays ─────────────────── v0.9.6
Installed FreeTypeAbstraction ────────── v0.8.1
Installed Animations ─────────────────── v0.4.1
Installed IterTools ──────────────────── v1.3.0
Installed DataStructures ─────────────── v0.18.7
Installed XSLT_jll ───────────────────── v1.1.33+3
Installed LibVPX_jll ─────────────────── v1.9.0+0
Installed FFTW_jll ───────────────────── v3.3.9+5
Installed Libmount_jll ───────────────── v2.34.0+2
Installed libvorbis_jll ──────────────── v1.3.6+5
Installed Missings ───────────────────── v0.4.4
Installed OrderedCollections ─────────── v1.3.1
Installed FileIO ─────────────────────── v1.4.3
Installed Xorg_libxcb_jll ────────────── v1.13.0+2
Installed EarCut_jll ─────────────────── v2.1.5+0
Installed Formatting ─────────────────── v0.4.1
Installed Xorg_libXau_jll ────────────── v1.0.9+3
Installed Contour ────────────────────── v0.5.5
Installed Grisu ──────────────────────── v1.0.0
Installed WoodburyMatrices ───────────── v0.5.2
Installed Fontconfig_jll ─────────────── v2.13.1+13
Installed Libgpg_error_jll ───────────── v1.36.0+2
Installed x264_jll ───────────────────── v2020.7.14+1
Installed Rmath ──────────────────────── v0.6.1
Installed GridLayoutBase ─────────────── v0.3.7
Installed Match ──────────────────────── v1.1.0
Installed QuadGK ─────────────────────── v2.4.1
Installed ColorVectorSpace ───────────── v0.8.6
Installed Libffi_jll ─────────────────── v3.2.1+3
Installed PCRE_jll ───────────────────── v8.42.0+3
Installed CompilerSupportLibraries_jll ─ v0.3.3+0
Installed SpecialFunctions ───────────── v0.10.3
Installed StaticArrays ───────────────── v0.12.4
Installed Parsers ────────────────────── v1.0.11
Installed AxisAlgorithms ─────────────── v1.0.0
Installed Adapt ──────────────────────── v2.3.0
Installed Xorg_libpthread_stubs_jll ──── v0.1.0+2
Installed FFMPEG ─────────────────────── v0.4.0
Installed Pango_jll ──────────────────── v1.42.4+9
Installed PlotUtils ──────────────────── v1.0.7
Installed JSON ───────────────────────── v0.21.1
Installed Rmath_jll ──────────────────── v0.2.2+1
Installed Glib_jll ───────────────────── v2.59.0+3
Installed OffsetArrays ───────────────── v1.3.0
Installed FFTW ───────────────────────── v1.2.4
Installed ImageCore ──────────────────── v0.8.16
Installed Xorg_libXrender_jll ────────── v0.9.10+3
Installed libfdk_aac_jll ─────────────── v0.1.6+3
Installed KernelDensity ──────────────── v0.6.0
Installed DataValueInterfaces ────────── v1.0.0
Installed Packing ────────────────────── v0.4.1
Installed Graphite2_jll ──────────────── v1.3.13+3
Installed TableTraits ────────────────── v1.0.0
Installed OpenSSL_jll ────────────────── v1.1.1+5
Installed MappedArrays ───────────────── v0.2.2
Installed AbstractFFTs ───────────────── v0.5.0
Installed Requires ───────────────────── v1.1.0
Installed DocStringExtensions ────────── v0.8.3
Installed StatsFuns ──────────────────── v0.9.5
Installed Expat_jll ──────────────────── v2.2.7+5
Installed Bzip2_jll ──────────────────── v1.0.6+4
Installed CEnum ──────────────────────── v0.4.1
Installed libass_jll ─────────────────── v0.14.0+3
Installed PNGFiles ───────────────────── v0.3.1
Installed Ratios ─────────────────────── v0.4.0
Installed Cairo ──────────────────────── v1.0.5
Installed ColorSchemes ───────────────── v3.10.1
Installed AbstractPlotting ───────────── v0.12.14
Updating `~/.julia/environments/v1.6/Project.toml`
[13f3f980] + CairoMakie v0.3.3
Updating `~/.julia/environments/v1.6/Manifest.toml`
[621f4979] + AbstractFFTs v0.5.0
[537997a7] + AbstractPlotting v0.12.14
[79e6a3ab] + Adapt v2.3.0
[27a7e980] + Animations v0.4.1
[13072b0f] + AxisAlgorithms v1.0.0
[6e34b625] + Bzip2_jll v1.0.6+4
[fa961155] + CEnum v0.4.1
[159f3aea] + Cairo v1.0.5
[13f3f980] + CairoMakie v0.3.3
[83423d85] + Cairo_jll v1.16.0+5
[a2cac450] + ColorBrewer v0.4.0
[35d6a980] + ColorSchemes v3.10.1
[3da002f7] + ColorTypes v0.10.9
[c3611d14] + ColorVectorSpace v0.8.6
[5ae59095] + Colors v0.12.4
[34da2185] + Compat v3.18.0
[e66e0078] + CompilerSupportLibraries_jll v0.3.3+0
[d38c429a] + Contour v0.5.5
[9a962f9c] + DataAPI v1.3.0
[864edb3b] + DataStructures v0.18.7
[e2d170a0] + DataValueInterfaces v1.0.0
[31c24e10] + Distributions v0.23.12
[ffbed154] + DocStringExtensions v0.8.3
[5ae413db] + EarCut_jll v2.1.5+0
[da5c29d0] + EllipsisNotation v0.4.0
[2e619515] + Expat_jll v2.2.7+5
[c87230d0] + FFMPEG v0.4.0
[b22a6f82] + FFMPEG_jll v4.3.1+2
[7a1cc6ca] + FFTW v1.2.4
[f5851436] + FFTW_jll v3.3.9+5
[5789e2e9] + FileIO v1.4.3
[1a297f60] + FillArrays v0.9.6
[53c48c17] + FixedPointNumbers v0.8.4
[a3f928ae] + Fontconfig_jll v2.13.1+13
[59287772] + Formatting v0.4.1
[b38be410] + FreeType v3.0.1
[d7e528f0] + FreeType2_jll v2.10.1+4
[663a7486] + FreeTypeAbstraction v0.8.1
[559328eb] + FriBidi_jll v1.0.5+5
[5c1252a2] + GeometryBasics v0.3.3
[78b55507] + Gettext_jll v0.20.1+6
[7746bdde] + Glib_jll v2.59.0+3
[a2bd30eb] + Graphics v1.0.2
[3b182d85] + Graphite2_jll v1.3.13+3
[3955a311] + GridLayoutBase v0.3.7
[42e2da0e] + Grisu v1.0.0
[2e76f6c2] + HarfBuzz_jll v2.6.1+9
[a51ab1cf] + ICU_jll v67.1.0+1
[a09fc81d] + ImageCore v0.8.16
[82e4d734] + ImageIO v0.3.0
[9b13fd28] + IndirectArrays v0.5.1
[1d5cc7b8] + IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] + Interpolations v0.12.10
[8197267c] + IntervalSets v0.5.1
[c8e1da08] + IterTools v1.3.0
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] + JSON v0.21.1
[5ab0869b] + KernelDensity v0.6.0
[c1c5ebd0] + LAME_jll v3.100.0+2
[dd4b983a] + LZO_jll v2.10.0+2
[dd192d2f] + LibVPX_jll v1.9.0+0
[e9f186c6] + Libffi_jll v3.2.1+3
[d4300ac3] + Libgcrypt_jll v1.8.5+3
[7add5ba3] + Libgpg_error_jll v1.36.0+2
[94ce4f54] + Libiconv_jll v1.16.0+6
[4b2f31a3] + Libmount_jll v2.34.0+2
[38a345b3] + Libuuid_jll v2.34.0+6
[856f044c] + MKL_jll v2020.2.254+0
[dbb5928d] + MappedArrays v0.2.2
[7eb4fadd] + Match v1.1.0
[e1d29d7a] + Missings v0.4.4
[e94cdb99] + MosaicViews v0.2.3
[77ba4419] + NaNMath v0.3.4
[510215fc] + Observables v0.3.2
[6fe1bfb0] + OffsetArrays v1.3.0
[e7412a2a] + Ogg_jll v1.3.4+1
[458c3c95] + OpenSSL_jll v1.1.1+5
[efe28fd5] + OpenSpecFun_jll v0.5.3+3
[91d4177d] + Opus_jll v1.3.1+2
[bac558e1] + OrderedCollections v1.3.1
[2f80f16e] + PCRE_jll v8.42.0+3
[90014a1f] + PDMats v0.10.1
[f57f5aa1] + PNGFiles v0.3.1
[19eb6ba3] + Packing v0.4.1
[5432bcbf] + PaddedViews v0.5.5
[36c8627f] + Pango_jll v1.42.4+9
[69de0a69] + Parsers v1.0.11
[30392449] + Pixman_jll v0.38.4+4
[995b91a9] + PlotUtils v1.0.7
[1fd47b50] + QuadGK v2.4.1
[c84ed2f1] + Ratios v0.4.0
[189a3867] + Reexport v0.2.0
[ae029012] + Requires v1.1.0
[79098fc4] + Rmath v0.6.1
[f50d1b31] + Rmath_jll v0.2.2+1
[992d4aef] + Showoff v0.3.2
[73760f76] + SignedDistanceFields v0.4.0
[a2af1166] + SortingAlgorithms v0.3.1
[276daf66] + SpecialFunctions v0.10.3
[90137ffa] + StaticArrays v0.12.4
[2913bbd2] + StatsBase v0.33.1
[4c63d2b9] + StatsFuns v0.9.5
[09ab397b] + StructArrays v0.4.4
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v1.1.0
[1cfade01] + UnicodeFun v0.4.1
[efce3f68] + WoodburyMatrices v0.5.2
[02c8fc9c] + XML2_jll v2.9.10+2
[aed1982a] + XSLT_jll v1.1.33+3
[4f6342f7] + Xorg_libX11_jll v1.6.9+3
[0c0b7dd1] + Xorg_libXau_jll v1.0.9+3
[a3789734] + Xorg_libXdmcp_jll v1.1.3+3
[1082639a] + Xorg_libXext_jll v1.3.4+3
[ea2f1a96] + Xorg_libXrender_jll v0.9.10+3
[14d82f49] + Xorg_libpthread_stubs_jll v0.1.0+2
[c7cfdc94] + Xorg_libxcb_jll v1.13.0+2
[c5fb5394] + Xorg_xtrans_jll v1.4.0+2
[83775a58] + Zlib_jll v1.2.11+16
[0ac62f75] + libass_jll v0.14.0+3
[f638f0a6] + libfdk_aac_jll v0.1.6+3
[b53b4c65] + libpng_jll v1.6.37+5
[f27f6e37] + libvorbis_jll v1.3.6+5
[1270edf5] + x264_jll v2020.7.14+1
[dfaa095f] + x265_jll v3.0.0+2
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[1a1011a3] + SharedArrays
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[4607b0f0] + SuiteSparse
[fa267f1f] + TOML
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building FFTW → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/8b7c16b56936047ca41bf25effa137ae0b381ae8/build.log`
Testing CairoMakie
Status `/tmp/jl_wvaRB0/Project.toml`
[537997a7] AbstractPlotting v0.12.14
[159f3aea] Cairo v1.0.5
[13f3f980] CairoMakie v0.3.3
[5ae59095] Colors v0.12.4
[7a1cc6ca] FFTW v1.2.4
[5789e2e9] FileIO v1.4.3
[b38be410] FreeType v3.0.1
[5c1252a2] GeometryBasics v0.3.3
[6218d12a] ImageMagick v1.1.6
[dbd62bd0] MakieGallery v0.2.17
[90137ffa] StaticArrays v0.12.4
[37e2e46d] LinearAlgebra
[8dfed614] Test
Status `/tmp/jl_wvaRB0/Manifest.toml`
[621f4979] AbstractFFTs v0.5.0
[537997a7] AbstractPlotting v0.12.14
[79e6a3ab] Adapt v2.3.0
[27a7e980] Animations v0.4.1
[13072b0f] AxisAlgorithms v1.0.0
[39de3d68] AxisArrays v0.4.3
[b99e7846] BinaryProvider v0.5.10
[6e34b625] Bzip2_jll v1.0.6+4
[fa961155] CEnum v0.4.1
[159f3aea] Cairo v1.0.5
[13f3f980] CairoMakie v0.3.3
[83423d85] Cairo_jll v1.16.0+5
[aafaddc9] CatIndices v0.2.1
[a2cac450] ColorBrewer v0.4.0
[35d6a980] ColorSchemes v3.10.1
[3da002f7] ColorTypes v0.10.9
[c3611d14] ColorVectorSpace v0.8.6
[5ae59095] Colors v0.12.4
[34da2185] Compat v3.18.0
[e66e0078] CompilerSupportLibraries_jll v0.3.3+0
[ed09eef8] ComputationalResources v0.3.2
[d38c429a] Contour v0.5.5
[150eb455] CoordinateTransformations v0.6.0
[dc8bdbbb] CustomUnitRanges v1.0.0
[9a962f9c] DataAPI v1.3.0
[864edb3b] DataStructures v0.18.7
[e2d170a0] DataValueInterfaces v1.0.0
[31c24e10] Distributions v0.23.12
[ffbed154] DocStringExtensions v0.8.3
[e30172f5] Documenter v0.25.2
[5ae413db] EarCut_jll v2.1.5+0
[da5c29d0] EllipsisNotation v0.4.0
[2e619515] Expat_jll v2.2.7+5
[c87230d0] FFMPEG v0.4.0
[b22a6f82] FFMPEG_jll v4.3.1+2
[4f61f5a4] FFTViews v0.3.1
[7a1cc6ca] FFTW v1.2.4
[f5851436] FFTW_jll v3.3.9+5
[5789e2e9] FileIO v1.4.3
[1a297f60] FillArrays v0.9.6
[53c48c17] FixedPointNumbers v0.8.4
[a3f928ae] Fontconfig_jll v2.13.1+13
[59287772] Formatting v0.4.1
[b38be410] FreeType v3.0.1
[d7e528f0] FreeType2_jll v2.10.1+4
[663a7486] FreeTypeAbstraction v0.8.1
[559328eb] FriBidi_jll v1.0.5+5
[5c1252a2] GeometryBasics v0.3.3
[78b55507] Gettext_jll v0.20.1+6
[7746bdde] Glib_jll v2.59.0+3
[a2bd30eb] Graphics v1.0.2
[3b182d85] Graphite2_jll v1.3.13+3
[3955a311] GridLayoutBase v0.3.7
[42e2da0e] Grisu v1.0.0
[2e76f6c2] HarfBuzz_jll v2.6.1+9
[eafb193a] Highlights v0.4.5
[a51ab1cf] ICU_jll v67.1.0+1
[bbac6d45] IdentityRanges v0.3.1
[2803e5a7] ImageAxes v0.6.6
[a09fc81d] ImageCore v0.8.16
[6a3955dd] ImageFiltering v0.6.15
[82e4d734] ImageIO v0.3.0
[6218d12a] ImageMagick v1.1.6
[c73af94c] ImageMagick_jll v6.9.10-12+3
[bc367c6b] ImageMetadata v0.9.3
[02fcd773] ImageTransformations v0.8.6
[9b13fd28] IndirectArrays v0.5.1
[1d5cc7b8] IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] Interpolations v0.12.10
[8197267c] IntervalSets v0.5.1
[c8e1da08] IterTools v1.3.0
[82899510] IteratorInterfaceExtensions v1.0.0
[682c06a0] JSON v0.21.1
[aacddb02] JpegTurbo_jll v2.0.1+2
[5ab0869b] KernelDensity v0.6.0
[c1c5ebd0] LAME_jll v3.100.0+2
[dd4b983a] LZO_jll v2.10.0+2
[dd192d2f] LibVPX_jll v1.9.0+0
[e9f186c6] Libffi_jll v3.2.1+3
[d4300ac3] Libgcrypt_jll v1.8.5+3
[7add5ba3] Libgpg_error_jll v1.36.0+2
[94ce4f54] Libiconv_jll v1.16.0+6
[4b2f31a3] Libmount_jll v2.34.0+2
[89763e89] Libtiff_jll v4.1.0+1
[38a345b3] Libuuid_jll v2.34.0+6
[856f044c] MKL_jll v2020.2.254+0
[1914dd2f] MacroTools v0.5.5
[dbd62bd0] MakieGallery v0.2.17
[dbb5928d] MappedArrays v0.2.2
[7eb4fadd] Match v1.1.0
[7269a6da] MeshIO v0.4.2
[e1d29d7a] Missings v0.4.4
[e94cdb99] MosaicViews v0.2.3
[77ba4419] NaNMath v0.3.4
[510215fc] Observables v0.3.2
[6fe1bfb0] OffsetArrays v1.3.0
[e7412a2a] Ogg_jll v1.3.4+1
[458c3c95] OpenSSL_jll v1.1.1+5
[efe28fd5] OpenSpecFun_jll v0.5.3+3
[91d4177d] Opus_jll v1.3.1+2
[bac558e1] OrderedCollections v1.3.1
[2f80f16e] PCRE_jll v8.42.0+3
[90014a1f] PDMats v0.10.1
[f57f5aa1] PNGFiles v0.3.1
[19eb6ba3] Packing v0.4.1
[5432bcbf] PaddedViews v0.5.5
[36c8627f] Pango_jll v1.42.4+9
[69de0a69] Parsers v1.0.11
[30392449] Pixman_jll v0.38.4+4
[995b91a9] PlotUtils v1.0.7
[1fd47b50] QuadGK v2.4.1
[b3c3ace0] RangeArrays v0.3.2
[c84ed2f1] Ratios v0.4.0
[189a3867] Reexport v0.2.0
[ae029012] Requires v1.1.0
[79098fc4] Rmath v0.6.1
[f50d1b31] Rmath_jll v0.2.2+1
[6038ab10] Rotations v1.0.1
[992d4aef] Showoff v0.3.2
[73760f76] SignedDistanceFields v0.4.0
[699a6c99] SimpleTraits v0.9.3
[a2af1166] SortingAlgorithms v0.3.1
[276daf66] SpecialFunctions v0.10.3
[860ef19b] StableRNGs v0.1.2
[90137ffa] StaticArrays v0.12.4
[2913bbd2] StatsBase v0.33.1
[4c63d2b9] StatsFuns v0.9.5
[09ab397b] StructArrays v0.4.4
[a4af3ec5] SyntaxTree v1.0.1
[3783bdb8] TableTraits v1.0.0
[bd369af6] Tables v1.1.0
[06e1c1a7] TiledIteration v0.2.4
[1cfade01] UnicodeFun v0.4.1
[efce3f68] WoodburyMatrices v0.5.2
[02c8fc9c] XML2_jll v2.9.10+2
[aed1982a] XSLT_jll v1.1.33+3
[4f6342f7] Xorg_libX11_jll v1.6.9+3
[0c0b7dd1] Xorg_libXau_jll v1.0.9+3
[a3789734] Xorg_libXdmcp_jll v1.1.3+3
[1082639a] Xorg_libXext_jll v1.3.4+3
[ea2f1a96] Xorg_libXrender_jll v0.9.10+3
[14d82f49] Xorg_libpthread_stubs_jll v0.1.0+2
[c7cfdc94] Xorg_libxcb_jll v1.13.0+2
[c5fb5394] Xorg_xtrans_jll v1.4.0+2
[a5390f91] ZipFile v0.9.2
[83775a58] Zlib_jll v1.2.11+16
[3161d3a3] Zstd_jll v1.4.5+1
[0ac62f75] libass_jll v0.14.0+3
[f638f0a6] libfdk_aac_jll v0.1.6+3
[b53b4c65] libpng_jll v1.6.37+5
[f27f6e37] libvorbis_jll v1.3.6+5
[1270edf5] x264_jll v2020.7.14+1
[dfaa095f] x265_jll v3.0.0+2
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[b77e0a4c] InteractiveUtils
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[4607b0f0] SuiteSparse
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Testing Running tests...
[ Info: Makie/AbstractPlotting is caching fonts, this may take a while. Needed only on first run!
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
Test Summary: | Pass Total
Saving formats | 93 93
[ Info: starting from index 1
Running tutorial_simple_scatter
Running tutorial_markersize
Running tutorial_simple_line
Running tutorial_adding_to_a_scene
Running tutorial_removing_from_a_scene
Running tutorial_adjusting_scene_limits
Running tutorial_basic_theming
Running tutorial_heatmap
Running tutorial_linesegments
Running tutorial_barplot
Running tutorial_title
Running tutorial_title_function
Running tutorial_plot_transformation
Running align
Running color_1
Running colormap_1
Running colorrange
Running fillrange
Running font
Running glowcolor,_glowwidth
Running image_1
Running interpolate
Running levels
Running linestyle
Running linewidth
Running markersize
Running position_1
Running rotation_1
Running strokecolor,_strokewidth
Running strokecolor,_strokewidth_1
Running textsize
Running visible
Running simple_line_plot
Running multiple_functions
Running animations
Running parametric_plots
Running colors
┌ Warning: Founds 0 width in scene limits: Float32[1.0, 1.0, 0.0] .. Float32[50.0, 1.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:538
┌ Warning: Founds 0 width in scene limits: Float32[1.0, 1.0, 0.0] .. Float32[50.0, 1.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:538
Running attributes_1
Running build_plot_in_pieces
Running barplot_1
Running subplots
Running text_1
Running contours
Running heatmap_1
Running label_rotation,_title_location
Running lines_with_varying_colors
Running animated_time_series
Running test_heatmap___image_overlap
Running animation
Running barplot_2
Running poly_and_colormap
Running quiver_1
Running image_2
Running scatter_colormap
Running colored_triangle
Running heatmap_interpolation
Running colored_triangle_1
Running scale_plot
Running polygons
Running contour_function
Running customize_axes
┌ Warning: Error thrown when evaluating Customize Axes
│ exception =
│ MethodError: no method matching update_limits!(::Scene, ::AbstractPlotting.Automatic, ::Tuple{Float64, Float64})
│ Closest candidates are:
│ update_limits!(::Scene, ::AbstractPlotting.Automatic) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene, ::AbstractPlotting.Automatic, !Matched::Vec{3, Float32}) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ ...
│ Stacktrace:
│ [1] update_limits!(scene::Scene, limits::AbstractPlotting.Automatic)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:516
│ [2] update_limits!(scene::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ [3] (::AbstractPlotting.var"#86#87"{Scene})(update::Bool, px_area::GeometryBasics.HyperRectangle{2, Int64})
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:92
│ [4] (::Observables.OnUpdate{AbstractPlotting.var"#86#87"{Scene}, Tuple{Observable{Bool}, Observable{GeometryBasics.HyperRectangle{2, Int64}}}})(#unused#::Bool)
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:293
│ [5] setindex!(observable::Observable{Bool}, val::Bool; notify::Observables.var"#9#11")
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:205
│ [6] setindex!
│ @ ~/.julia/packages/Observables/A7I8T/src/Observables.jl:201 [inlined]
│ [7] update!(p::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:261
│ [8] show(io::IOContext{IOStream}, m::MIME{Symbol("image/png")}, scene::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:76
│ [9] (::AbstractPlotting.var"#853#854"{Scene, Base.Iterators.Pairs{Symbol, Real, Tuple{Symbol, Symbol, Symbol}, NamedTuple{(:full_fidelity, :pt_per_unit, :px_per_unit), Tuple{Bool, Float64, Float64}}}, DataType})(s::IOStream)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:270
│ [10] open(::AbstractPlotting.var"#853#854"{Scene, Base.Iterators.Pairs{Symbol, Real, Tuple{Symbol, Symbol, Symbol}, NamedTuple{(:full_fidelity, :pt_per_unit, :px_per_unit), Tuple{Bool, Float64, Float64}}}, DataType}, ::String, ::Vararg{String, N} where N; kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
│ @ Base ./io.jl:330
│ [11] open(::Function, ::String, ::String)
│ @ Base ./io.jl:328
│ [12] save(f::FileIO.File{FileIO.DataFormat{:PNG}}, scene::Scene; resolution::Tuple{Int64, Int64}, pt_per_unit::Float64, px_per_unit::Float64)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:269
│ [13] save
│ @ ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:254 [inlined]
│ [14] save_media
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:19 [inlined]
│ [15] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:297 [inlined]
│ [16] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [17] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Scene)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
│ [18] (::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}})(entry::MakieGallery.CellEntry)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:614
│ [19] enumerate_examples(::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}}; start::Int64, exclude_tags::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:539
│ [20] #eval_examples#94
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:611 [inlined]
│ [21] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290 [inlined]
│ [22] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [23] record_examples(folder::String; resolution::Tuple{Int64, Int64}, resume::Bool, generate_thumbnail::Bool, display::Bool, display_output_toplevel::Bool)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290
│ [24] record_examples(folder::String)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:273
│ [25] top-level scope
│ @ ~/.julia/packages/CairoMakie/Z3jKo/test/runtests.jl:39
│ [26] include(fname::String)
│ @ Base.MainInclude ./client.jl:444
│ [27] top-level scope
│ @ none:6
│ [28] eval(m::Module, e::Any)
│ @ Core ./boot.jl:360
│ [29] exec_options(opts::Base.JLOptions)
│ @ Base ./client.jl:261
│ [30] _start()
│ @ Base ./client.jl:485
└ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:308
Customize Axes: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:309
Expression: false
Stacktrace:
[1] macro expansion
@ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:309 [inlined]
[2] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
[3] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Scene)
@ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
Running contour_1
Running heatmap_2
Running animated_scatter
Running text_annotation
Running text_rotation
Running chess_game
Running linesegments___colors
Running standard_deviation_band
Running parallel_prefix_sum
Running interactive_light_cone
Running streamplot_animation
┌ Warning: Example Streamplot animation failed
│ exception =
│ LoadError: MethodError: no method matching update_limits!(::Scene, ::AbstractPlotting.Automatic, ::Tuple{Int64, Int64})
│ Closest candidates are:
│ update_limits!(::Scene, ::AbstractPlotting.Automatic) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene, ::AbstractPlotting.Automatic, !Matched::Vec{3, Float32}) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ ...
│ Stacktrace:
│ [1] update_limits!(scene::Scene, limits::AbstractPlotting.Automatic)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:516
│ [2] update_limits!(scene::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ [3] (::AbstractPlotting.var"#86#87"{Scene})(update::Bool, px_area::GeometryBasics.HyperRectangle{2, Int64})
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:92
│ [4] (::Observables.OnUpdate{AbstractPlotting.var"#86#87"{Scene}, Tuple{Observable{Bool}, Observable{GeometryBasics.HyperRectangle{2, Int64}}}})(#unused#::Bool)
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:293
│ [5] setindex!(observable::Observable{Bool}, val::Bool; notify::Observables.var"#9#11")
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:205
│ [6] setindex!
│ @ ~/.julia/packages/Observables/A7I8T/src/Observables.jl:201 [inlined]
│ [7] update!(p::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:261
│ [8] foreach
│ @ ./abstractarray.jl:2080 [inlined]
│ [9] update!(p::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:262
│ [10] VideoStream(scene::Scene; framerate::Int64)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:369
│ [11] record(func::MakieGallery.##TempModule#361.var"#1#2", scene::Scene, path::String, iter::LinRange{Float64}; framerate::Int64, compression::Int64, sleep::Bool)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:559
│ [12] record(func::Function, scene::Scene, path::String, iter::LinRange{Float64})
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:559
│ [13] top-level scope
│ @ streamplot_animation:20
│ [14] eval
│ @ ./boot.jl:360 [inlined]
│ [15] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)
│ @ Base ./loading.jl:1051
│ [16] include_string
│ @ ./loading.jl:1061 [inlined]
│ [17] eval_example(entry::MakieGallery.CellEntry; kw_args::Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}})
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:583
│ [18] (::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}})(entry::MakieGallery.CellEntry)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:613
│ [19] enumerate_examples(::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}}; start::Int64, exclude_tags::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:539
│ [20] #eval_examples#94
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:611 [inlined]
│ [21] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290 [inlined]
│ [22] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [23] record_examples(folder::String; resolution::Tuple{Int64, Int64}, resume::Bool, generate_thumbnail::Bool, display::Bool, display_output_toplevel::Bool)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290
│ [24] record_examples(folder::String)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:273
│ [25] top-level scope
│ @ ~/.julia/packages/CairoMakie/Z3jKo/test/runtests.jl:39
│ [26] include(fname::String)
│ @ Base.MainInclude ./client.jl:444
│ [27] top-level scope
│ @ none:6
│ [28] eval(m::Module, e::Any)
│ @ Core ./boot.jl:360
│ [29] exec_options(opts::Base.JLOptions)
│ @ Base ./client.jl:261
│ [30] _start()
│ @ Base ./client.jl:485
│ in expression starting at streamplot_animation:20
└ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:585
with source:
v(x::Point2{T}, t) where T = Point2{T}(one(T) * x[2] * t, 4 * x[1])
sf = Node(Base.Fix2(v, 0e0))
title_str = Node("t = 0.00")
sp = streamplot(
sf,
-2..2, -2..2;
linewidth = 2,
padding = (0, 0),
arrow_size = 0.09,
colormap =:magma
)
sc = title(sp, title_str)
record(sc, "/home/pkgeval/.julia/packages/CairoMakie/Z3jKo/test/test_recordings/tmp/streamplot_animation.mp4", LinRange(0, 20, 5*30)) do i
sf[] = Base.Fix2(v, i)
title_str[] = "t = $(round(i; sigdigits = 2))"
end
┌ Warning: Error thrown when evaluating Streamplot animation
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:17
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:23
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:31
│ ...
│ Stacktrace:
│ [1] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:297 [inlined]
│ [2] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [3] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
│ [4] (::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}})(entry::MakieGallery.CellEntry)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:614
│ [5] enumerate_examples(::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}}; start::Int64, exclude_tags::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:539
│ [6] #eval_examples#94
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:611 [inlined]
│ [7] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290 [inlined]
│ [8] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [9] record_examples(folder::String; resolution::Tuple{Int64, Int64}, resume::Bool, generate_thumbnail::Bool, display::Bool, display_output_toplevel::Bool)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290
│ [10] record_examples(folder::String)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:273
│ [11] top-level scope
│ @ ~/.julia/packages/CairoMakie/Z3jKo/test/runtests.jl:39
│ [12] include(fname::String)
│ @ Base.MainInclude ./client.jl:444
│ [13] top-level scope
│ @ none:6
│ [14] eval(m::Module, e::Any)
│ @ Core ./boot.jl:360
│ [15] exec_options(opts::Base.JLOptions)
│ @ Base ./client.jl:261
│ [16] _start()
│ @ Base ./client.jl:485
└ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:308
Streamplot animation: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:309
Expression: false
Stacktrace:
[1] macro expansion
@ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:309 [inlined]
[2] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
[3] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Nothing)
@ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
Running add_and_change_points
Running animation_with_slider_control
Running pong
┌ Warning: `a::StaticArray + b::Number` is deprecated, use `a .+ b` instead.
│ caller = _broadcast_getindex_evalf at broadcast.jl:648 [inlined]
└ @ Core ./broadcast.jl:648
Running pulsing_marker
Running travelling_wave
Running viridis_scatter
Running marker_sizes___marker_colors
Running marker_offset
Running colormaps
Running available_markers
Running axis_theming
Running stepper_demo
Running legend_1
Running implicit_equation
Running test
Running test_1
Running test_2
Running test_3
Running test_4
Running test_5
Running test_6
Running test_7
Running test_8
Running test_9
Running test_10
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, Inf] .. Float32[NaN, NaN, NaN]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
Running test_11
Running test_12
Running test_13
Running test_14
Running test_15
Running test_16
Running test_17
Running test_18
Running test_19
Running test_20
Running test_21
Running test_22
Running test_23
Running test_24
Running test_25
Running test_26
Running test_27
Running test_28
Running test_29
Running test_30
Test Summary: | Pass Fail Total
Full Gallery recording | 115 2 117
Tutorial simple scatter | 1 1
Tutorial markersize | 1 1
Tutorial simple line | 1 1
Tutorial adding to a scene | 1 1
Tutorial removing from a scene | 1 1
Tutorial adjusting scene limits | 1 1
Tutorial basic theming | 1 1
Tutorial heatmap | 1 1
Tutorial linesegments | 1 1
Tutorial barplot | 1 1
Tutorial title | 1 1
Tutorial title function | 1 1
Tutorial plot transformation | 1 1
align | 1 1
color | 1 1
colormap | 1 1
colorrange | 1 1
fillrange | 1 1
font | 1 1
glowcolor, glowwidth | 1 1
image | 1 1
interpolate | 1 1
levels | 1 1
linestyle | 1 1
linewidth | 1 1
markersize | 1 1
position | 1 1
rotation | 1 1
strokecolor, strokewidth | 1 1
strokecolor, strokewidth | 1 1
textsize | 1 1
visible | 1 1
simple line plot | 1 1
multiple functions | 1 1
animations | 1 1
parametric plots | 1 1
colors | 1 1
attributes | 1 1
build plot in pieces | 1 1
barplot | 1 1
subplots | 1 1
text | 1 1
contours | 1 1
heatmap | 1 1
label rotation, title location | 1 1
lines with varying colors | 1 1
Animated time series | 1 1
Test heatmap + image overlap | 1 1
Animation | 1 1
barplot | 1 1
poly and colormap | 1 1
quiver | 1 1
image | 1 1
scatter colormap | 1 1
colored triangle | 1 1
heatmap interpolation | 1 1
colored triangle | 1 1
scale_plot | 1 1
Polygons | 1 1
Contour Function | 1 1
Customize Axes | 1 1
contour | 1 1
Heatmap | 1 1
Animated Scatter | 1 1
Text Annotation | 1 1
Text rotation | 1 1
Chess Game | 1 1
linesegments + colors | 1 1
Standard deviation band | 1 1
Parallel Prefix Sum | 1 1
Interactive light cone | 1 1
Streamplot animation | 1 1
Add and change points | 1 1
Animation with slider control | 1 1
pong | 1 1
pulsing marker | 1 1
Travelling wave | 1 1
Viridis scatter | 1 1
Marker sizes + Marker colors | 1 1
Marker offset | 1 1
colormaps | 1 1
Available markers | 1 1
Axis theming | 1 1
Stepper demo | 1 1
Legend | 1 1
Implicit equation | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
Test | 1 1
ERROR: LoadError: Some tests did not pass: 115 passed, 2 failed, 0 errored, 0 broken.
in expression starting at /home/pkgeval/.julia/packages/CairoMakie/Z3jKo/test/runtests.jl:39
ERROR: Package CairoMakie errored during testing
Stacktrace:
[1] pkgerror(msg::String)
@ Pkg.Types /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:52
[2] test(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec}; coverage::Bool, julia_args::Cmd, test_args::Cmd, test_fn::Nothing)
@ Pkg.Operations /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/Operations.jl:1609
[3] test(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec}; coverage::Bool, test_fn::Nothing, julia_args::Cmd, test_args::Cmd, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ Pkg.API /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:331
[4] test(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec})
@ Pkg.API /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:318
[5] #test#62
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:68 [inlined]
[6] test
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:68 [inlined]
[7] #test#61
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:66 [inlined]
[8] test
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:66 [inlined]