forked from ponylang/ponyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
882 lines (729 loc) · 27.6 KB
/
.cirrus.yml
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
#
# Pull Request Tasks
#
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
matrix:
- name: "x86-64 Linux glibc"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
DEBUGGER: lldb
- name: "x86-64 Linux musl"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
DEBUGGER: gdb
container:
cpu: 8
memory: 4
libs_cache:
folder: build/libs
fingerprint_script:
- echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
debug_configure_script:
- make configure arch=x86-64 config=debug
debug_build_script:
- make build config=debug
debug_test_script:
- make test-ci config=debug usedebugger='${DEBUGGER}'
release_configure_script:
- make configure arch=x86-64 config=release
release_build_script:
- make build config=release
release_test_script:
- make test-ci config=release usedebugger='${DEBUGGER}'
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
arm_container:
image: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
cpu: 8
memory: 6
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
name: "aarch64 Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
debug_configure_script:
- make configure arch=armv8-a config=debug
debug_build_script:
- make build config=debug
debug_test_script:
- make test-ci config=debug usedebugger=lldb
release_configure_script:
- make configure arch=armv8-a config=release
release_build_script:
- make build config=release
release_test_script:
- make test-ci config=release usedebugger=lldb
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
freebsd_instance:
image: freebsd-13-0-release-amd64
cpu: 8
memory: 24
name: "x86-64 FreeBSD"
os_configuration_script:
- sysctl net.inet.tcp.keepinit=1000
install_script:
- echo "FETCH_RETRY = 6" >> /usr/local/etc/pkg.conf
- pkg install -y bash cmake gmake libunwind git
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` freebsd-13.0 20210710"
populate_script: gmake libs build_flags=-j8
upload_caches:
- libs
debug_configure_script:
- gmake configure arch=x86-64 config=debug
debug_build_script:
- gmake build config=debug
debug_test_script:
- gmake test-ci config=debug usedebugger=lldb
release_configure_script:
- gmake configure arch=x86-64 config=release
release_build_script:
- gmake build config=release
release_test_script:
- gmake test-ci config=release usedebugger=lldb
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
osx_instance:
image: monterey-xcode-13.2
name: "x86-64 Apple Darwin"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` macos monterey-xcode-13.2 20210710"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
debug_configure_script:
- make configure arch=x86-64 config=debug
debug_build_script:
- make build config=debug
debug_test_script:
- make test-ci config=debug usedebugger=lldb
release_configure_script:
- make configure arch=x86-64 config=release
release_build_script:
- make build config=release
release_test_script:
- make test-ci config=release usedebugger=lldb
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1
name: "arm64 Apple Darwin"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` arm64 ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1 20220511"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
debug_configure_script:
- make configure arch=armv8 config=debug
debug_build_script:
- make build arch=armv8 config=debug
debug_test_script:
- make test-ci config=debug usedebugger=lldb
release_configure_script:
- make configure arch=armv8 config=release
release_build_script:
- make build arch=armv8 config=release
release_test_script:
- make test-ci config=release usedebugger=lldb
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
windows_container:
image: ponylang/ponyc-ci-x86-64-pc-windows-msvc-builder:20220803
os_version: 2019
cpu: 8
memory: 24
name: "x86-64 Windows MSVC"
libs_cache:
folder: build/libs
fingerprint_script:
- ps: (Get-FileHash -Path make.ps1).Hash + (Get-FileHash -Path CMakeLists.txt).Hash + (Get-FileHash -Path lib\CMakeLists.txt).Hash + "Windows 20220803"
populate_script:
- ps: .\make.ps1 -Command libs -Generator "Visual Studio 17 2022"
upload_caches:
- libs
debug_config_script:
- ps: .\make.ps1 -Command configure -Config Debug -Generator "Visual Studio 17 2022"
debug_build_script:
- ps: .\make.ps1 -Command build -Config Debug
debug_test_script:
- ps: .\make.ps1 -Command test -Config Debug -Uselldb yes
release_config_script:
- ps: .\make.ps1 -Command configure -Config Release
release_build_script:
- ps: .\make.ps1 -Command build -Config Release
release_test_script:
- ps: .\make.ps1 -Command test -Config Release -Uselldb yes
task:
only_if: $CIRRUS_PR != ''
container:
image: ponylang/ponyc-ci-cross-arm:20220720
cpu: 8
memory: 6
environment:
IMAGE: ponylang/ponyc-ci-cross-arm:20220720
name: "arm Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
configure_script:
- make configure
build_script:
- make build
test_script:
- make test-ci usedebugger=lldb
libponyrt_cross_script:
- make cross-libponyrt CC=arm-linux-gnueabi-gcc CXX=arm-linux-gnueabi-g++ arch=armv7-a cross_cflags="-march=armv7-a -mtune=cortex-a9" cross_lflags="-O3;-march=arm"
test_stdlib_cross_script:
- make test-cross-ci PONYPATH=../armv7-a/release cross_triple=arm-unknown-linux-gnueabi cross_arch=armv7-a cross_cpu=cortex-a9 cross_linker=arm-linux-gnueabi-gcc cross_runner="qemu-arm-static -cpu cortex-a9 -L /usr/local/arm-linux-gnueabi/libc"
task:
only_if: $CIRRUS_PR != ''
container:
image: ponylang/ponyc-ci-cross-armhf:20220720
cpu: 8
memory: 6
environment:
IMAGE: ponylang/ponyc-ci-cross-armhf:20220720
name: "armhf Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
configure_script:
- make configure
build_script:
- make build
test_script:
- make test-ci usedebugger=lldb
libponyrt_cross_script:
- make cross-libponyrt CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++ arch=armv7-a cross_cflags="-march=armv7-a -mtune=cortex-a9" cross_lflags="-O3;-march=arm"
test_stdlib_cross_script:
- make test-cross-ci PONYPATH=../armv7-a/release cross_triple=arm-unknown-linux-gnueabihf cross_arch=armv7-a cross_cpu=cortex-a9 cross_linker=arm-linux-gnueabihf-gcc cross_runner="qemu-arm-static -cpu cortex-a9 -L /usr/local/arm-linux-gnueabihf/libc"
task:
only_if: $CIRRUS_PR != ''
container:
image: ponylang/ponyc-ci-cross-riscv64:20220720
cpu: 8
memory: 6
environment:
IMAGE: ponylang/ponyc-ci-cross-riscv64:20220720
name: "riscv64 Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
configure_script:
- make configure
build_script:
- make build
test_script:
- make test-ci usedebugger=lldb
libponyrt_cross_script:
- make cross-libponyrt CC=riscv64-linux-gnu-gcc-10 CXX=riscv64-linux-gnu-g++-10 arch=rv64gc cross_cflags="-march=rv64gc -mtune=rocket" cross_lflags="-march=riscv64"
test_stdlib_cross_script:
- make test-cross-ci PONYPATH=../rv64gc/release cross_triple=riscv64-unknown-linux-gnu cross_arch=rv64gc cross_cpu=generic-rv64 cross_linker=riscv64-linux-gnu-gcc-10 cross_ponyc_args='--abi=lp64d --features=+m,+a,+f,+d,+c --link-ldcmd=bfd' cross_runner="qemu-riscv64 -L /usr/riscv64-linux-gnu/lib/"
#
# Nightly build tasks
#
task:
only_if: $CIRRUS_CRON == "nightly"
timeout_in: 120m
matrix:
- name: "nightly: x86-64-unknown-linux-rocky8"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-rocky8-builder:20210707
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-rocky8-builder:20210707
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-rocky8
- name: "nightly: x86-64-unknown-linux-gnu"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-gnu-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-gnu-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-gnu
- name: "nightly: x86-64-unknown-linux-ubuntu18.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu18.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu18.04-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu18.04
- name: "nightly: x86-64-unknown-linux-ubuntu20.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu20.04
- name: "nightly: x86-64-unknown-linux-ubuntu22.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu22.04
- name: "nightly: x86-64-unknown-linux-musl"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-musl
container:
cpu: 8
memory: 4
environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script:
- echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${TRIPLE_VENDOR}-${TRIPLE_OS} ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
nightly_script:
- bash .ci-scripts/x86-64-nightly.bash
task:
only_if: $CIRRUS_CRON == "nightly"
timeout_in: 120m
freebsd_instance:
image: freebsd-13-0-release-amd64
cpu: 8
memory: 24
name: "nightly: x86-64-unknown-freebsd-13.0"
environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
install_script:
- echo "FETCH_RETRY = 6" >> /usr/local/etc/pkg.conf
- python3 -m ensurepip --upgrade
- python3 -m pip install cloudsmith-cli
- pkg install -y bash cmake gmake libunwind git
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` freebsd-13.0 20210710"
populate_script: gmake libs build_flags=-j8
upload_caches:
- libs
nightly_script:
- bash .ci-scripts/x86-64-unknown-freebsd-13.0-nightly.bash
task:
only_if: $CIRRUS_CRON == "nightly"
timeout_in: 120m
osx_instance:
image: monterey-xcode-13.2
name: "nightly: x86-64-apple-darwin"
environment:
TRIPLE_VENDOR: apple
TRIPLE_OS: darwin
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` macos monterey-xcode-13.2 20210710"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
install_script:
- brew install python
- pip3 install --upgrade cloudsmith-cli
nightly_script:
- export TZ=utc
- bash .ci-scripts/x86-64-nightly.bash
task:
only_if: $CIRRUS_CRON == "nightly"
timeout_in: 120m
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1
name: "nightly: arm64-apple-darwin"
environment:
TRIPLE_VENDOR: apple
TRIPLE_OS: darwin
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` arm64 ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1 20220511"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
install_script:
- brew install python
- pip3 install --upgrade cloudsmith-cli
nightly_script:
- export TZ=utc
- bash .ci-scripts/arm64-nightly.bash
task:
only_if: $CIRRUS_CRON == "nightly"
timeout_in: 120m
windows_container:
image: ponylang/ponyc-ci-x86-64-pc-windows-msvc-builder:20220803
os_version: 2019
cpu: 8
memory: 24
name: "nightly: x86-64-pc-windows-msvc"
environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script:
- ps: (Get-FileHash -Path make.ps1).Hash + (Get-FileHash -Path CMakeLists.txt).Hash + (Get-FileHash -Path lib\CMakeLists.txt).Hash + "Windows 20220803"
populate_script:
- ps: .\make.ps1 -Command libs -Generator "Visual Studio 17 2022"
upload_caches:
- libs
config_script:
- ps: .\make.ps1 -Command configure -Config Release -Generator "Visual Studio 17 2022" -Prefix "build\install\release" -Version nightly
build_script:
- ps: .\make.ps1 -Command build -Config Release -Prefix "build\install\release" -Version nightly
install_script:
- ps: .\make.ps1 -Command install -Config Release -Prefix "build\install\release"
package_script:
- ps: .\make.ps1 -Command package -Config Release -Prefix "build\install\release" -Version nightly
upload_script:
- ps: $version = (Get-Date).ToString("yyyyMMdd"); cloudsmith push raw --version $version --api-key $env:CLOUDSMITH_API_KEY --summary "Pony compiler" --description "https://github.com/ponylang/ponyc" ponylang/nightlies build\ponyc-x86-64-pc-windows-msvc.zip
#
# Release build tasks
#
task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'
timeout_in: 120m
matrix:
- name: "release: x86-64-unknown-linux-rocky8"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-rocky8-builder:20210707
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-rocky8-builder:20210707
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-rocky8
- name: "release: x86-64-unknown-linux-gnu"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-gnu-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-gnu-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-gnu
- name: "release: x86-64-unknown-linux-ubuntu18.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu18.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu18.04-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu18.04
- name: "release: x86-64-unknown-linux-ubuntu20.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu20.04
- name: "nightly: x86-64-unknown-linux-ubuntu22.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu22.04
- name: "release: x86-64-unknown-linux-musl"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-musl
container:
cpu: 8
memory: 4
environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script:
- echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${TRIPLE_VENDOR}-${TRIPLE_OS} ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
release_script:
- bash .ci-scripts/x86-64-release.bash
task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'
timeout_in: 120m
freebsd_instance:
image: freebsd-13-0-release-amd64
cpu: 8
memory: 24
name: "release: x86-64-unknown-freebsd-13.0"
environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
install_script:
- echo "FETCH_RETRY = 6" >> /usr/local/etc/pkg.conf
- python3 -m ensurepip --upgrade
- python3 -m pip install cloudsmith-cli
- pkg install -y bash cmake gmake libunwind git
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` freebsd-13.0 20210710"
populate_script: gmake libs build_flags=-j8
upload_caches:
- libs
release_script:
- bash .ci-scripts/x86-64-unknown-freebsd-13.0-release.bash
task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'
timeout_in: 120m
osx_instance:
image: monterey-xcode-13.2
name: "release: x86-64-apple-darwin"
environment:
TRIPLE_VENDOR: apple
TRIPLE_OS: darwin
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` macos monterey-xcode-13.2 20210710"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
install_script:
- brew install python
- pip3 install --upgrade cloudsmith-cli
release_script:
- export TZ=utc
- bash .ci-scripts/x86-64-release.bash
task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'
timeout_in: 120m
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1
name: "release: arm64-apple-darwin"
environment:
TRIPLE_VENDOR: apple
TRIPLE_OS: darwin
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` arm64 ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1 20220511"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
install_script:
- brew install python
- pip3 install --upgrade cloudsmith-cli
nightly_script:
- export TZ=utc
- bash .ci-scripts/arm64-release.bash
task:
only_if: $CIRRUS_TAG =~ '^\d+\.\d+\.\d+$'
timeout_in: 120m
windows_container:
image: ponylang/ponyc-ci-x86-64-pc-windows-msvc-builder:20220803
os_version: 2019
cpu: 8
memory: 24
name: "release: x86-64-pc-windows-msvc"
environment:
CLOUDSMITH_API_KEY: ENCRYPTED[!2cb1e71c189cabf043ac3a9030b3c7708f9c4c983c86d07372ae58ad246a07c54e40810d038d31c3cf3ed8888350caca!]
libs_cache:
folder: build/libs
fingerprint_script:
- ps: (Get-FileHash -Path make.ps1).Hash + (Get-FileHash -Path CMakeLists.txt).Hash + (Get-FileHash -Path lib\CMakeLists.txt).Hash + "Windows 20220803"
populate_script:
- ps: .\make.ps1 -Command libs -Generator "Visual Studio 17 2022"
upload_caches:
- libs
config_script:
- ps: .\make.ps1 -Command configure -Config Release -Generator "Visual Studio 17 2022" -Prefix "build\install\release" -Version (Get-Content .\VERSION)
build_script:
- ps: .\make.ps1 -Command build -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION)
install_script:
- ps: .\make.ps1 -Command install -Config Release -Prefix "build\install\release"
package_script:
- ps: .\make.ps1 -Command package -Config Release -Prefix "build\install\release" -Version (Get-Content .\VERSION)
upload_script:
- ps: $version = (Get-Content .\VERSION); cloudsmith push raw --version $version --api-key $env:CLOUDSMITH_API_KEY --summary "Pony compiler" --description "https://github.com/ponylang/ponyc" ponylang/releases build\ponyc-x86-64-pc-windows-msvc.zip
# Nightly stress tests using message-ubench
task:
only_if: $CIRRUS_CRON == "stress"
timeout_in: 120m
matrix:
- name: "Stress Test: x86-64-unknown-linux-ubuntu22.04 [release]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-release
DEBUGGER: lldb
- name: "Stress Test: x86-64-unknown-linux-ubuntu22.04 [debug]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-debug
DEBUGGER: lldb
depends_on:
- "Stress Test: x86-64-unknown-linux-ubuntu22.04 [release]"
- name: "Stress Test: x86-64-unknown-linux-musl [release]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
TARGET: test-stress-release
DEBUGGER: gdb
- name: "Stress Test: x86-64-unknown-linux-musl [debug]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
TARGET: test-stress-debug
DEBUGGER: gdb
depends_on:
- "Stress Test: x86-64-unknown-linux-musl [release]"
- name: "Stress Test: x86-64-unknown-linux-ubuntu22.04 [cd] [release]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-with-cd-release
DEBUGGER: lldb
- name: "Stress Test: x86-64-unknown-linux-ubuntu22.04 [cd] [debug]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-with-cd-debug
DEBUGGER: lldb
depends_on:
- "Stress Test: x86-64-unknown-linux-ubuntu22.04 [cd] [release]"
- name: "Stress Test: x86-64-unknown-linux-musl [cd] [release]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
TARGET: test-stress-with-cd-release
DEBUGGER: gdb
- name: "Stress Test: x86-64-unknown-linux-musl [cd] [debug]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20220807
TARGET: test-stress-with-cd-debug
DEBUGGER: gdb
depends_on:
- "Stress Test: x86-64-unknown-linux-musl [cd] [release]"
container:
cpu: 8
memory: 4
libs_cache:
folder: build/libs
fingerprint_script:
- echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
configure_script:
- make configure config=debug
build_script:
- make build config=debug
stress_test_script:
- make ${TARGET} config=debug usedebugger='${DEBUGGER}'
task:
only_if: $CIRRUS_CRON == "stress"
timeout_in: 120m
arm_container:
image: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
cpu: 8
memory: 4
matrix:
- name: "Stress Test: aarch64-unknown-linux-ubuntu20.04 [release]"
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-release
- name: "Stress Test: aarch64-unknown-linux-ubuntu20.04 [debug]"
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-debug
depends_on:
- "Stress Test: aarch64-unknown-linux-ubuntu20.04 [release]"
- name: "Stress Test: aarch64-unknown-linux-ubuntu20.04 [cd] [release]"
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-with-cd-release
- name: "Stress Test: aarch64-unknown-linux-ubuntu20.04 [cd] [debug]"
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu22.04-builder:20220720
TARGET: test-stress-with-cd-debug
depends_on:
- "Stress Test: aarch64-unknown-linux-ubuntu20.04 [cd] [release]"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5sum Makefile` `md5sum CMakeLists.txt` `md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
configure_script:
- make configure arch=armv8-a config=debug
build_script:
- make build config=debug
stress_test_script:
- make ${TARGET} config=debug usedebugger=lldb
task:
only_if: $CIRRUS_CRON == "stress"
timeout_in: 120m
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1
matrix:
- name: "Stress Test: arm64 macos monterey [release]"
environment:
TARGET: test-stress-release
- name: "Stress Test: arm64 macos monterey [debug]"
environment:
TARGET: test-stress-debug
depends_on:
- "Stress Test: arm64 macos monterey [release]"
- name: "Stress Test: arm64 macos monterey [cd] [release]"
environment:
TARGET: test-stress-with-cd-release
- name: "Stress Test: arm64 macos monterey [cd] [debug]"
environment:
TARGET: test-stress-with-cd-debug
depends_on:
- "Stress Test: arm64 macos monterey [cd] [release]"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 Makefile` `md5 CMakeLists.txt` `md5 lib/CMakeLists.txt` arm64 ghcr.io/cirruslabs/macos-monterey-xcode:13.3.1 20220511"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
configure_script:
- make configure arch=armv8 config=debug
build_script:
- make build config=debug
stress_test_script:
- make ${TARGET} config=debug usedebugger=lldb