forked from ponylang/ponyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
694 lines (574 loc) · 20.3 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
#
# 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-ubuntu20.04-builder:20200830
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20200830
- name: "x86-64 Linux musl"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
container:
cpu: 8
memory: 4
libs_cache:
folder: build/libs
fingerprint_script:
- echo "`md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
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
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
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
arm_container:
image: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu20.04-builder:20211003
cpu: 8
memory: 4
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu20.04-builder:20211003
name: "aarch64 Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5sum lib/CMakeLists.txt` ${IMAGE}"
populate_script: make libs build_flags=-j8
upload_caches:
- libs
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
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
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
- echo "IGNORE_OSVERSION = yes" >> /usr/local/etc/pkg.conf
- pkg update
- pkg install -y cmake gmake libunwind git
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 lib/CMakeLists.txt` freebsd-13.0 20210710"
populate_script: gmake libs build_flags=-j8
upload_caches:
- libs
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
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
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
osx_instance:
image: monterey-xcode-13.1
name: "x86-64 Apple Darwin"
install_script:
- brew install coreutils
libs_cache:
folder: build/libs
fingerprint_script: echo "`md5 lib/CMakeLists.txt` macos monterey-xcode-13.1 20210710"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
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
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
task:
only_if: $CIRRUS_PR != ''
timeout_in: 120m
windows_container:
image: ponylang/ponyc-ci-x86-64-pc-windows-msvc-builder:20210430
os_version: 2019
cpu: 8
memory: 24
name: "x86-64 Windows MSVC"
libs_cache:
folder: build/libs
fingerprint_script:
- ps: (Get-FileHash -Path lib\CMakeLists.txt).Hash + "Windows 20210430"
populate_script:
- ps: .\make.ps1 -Command libs -Generator "Visual Studio 16 2019"
upload_caches:
- libs
release_config_script:
- ps: .\make.ps1 -Command configure -Config Release -Generator "Visual Studio 16 2019"
release_build_script:
- ps: .\make.ps1 -Command build -Config Release -Generator "Visual Studio 16 2019"
release_test_script:
- ps: .\make.ps1 -Command test -Config Release -Generator "Visual Studio 16 2019"
debug_config_script:
- ps: .\make.ps1 -Command configure -Config Debug -Generator "Visual Studio 16 2019"
debug_build_script:
- ps: .\make.ps1 -Command build -Config Debug -Generator "Visual Studio 16 2019"
debug_test_script:
- ps: .\make.ps1 -Command test -Config Debug -Generator "Visual Studio 16 2019"
task:
only_if: $CIRRUS_PR != ''
container:
image: ponylang/ponyc-ci-cross-arm:20210430
cpu: 8
memory: 6
environment:
IMAGE: ponylang/ponyc-ci-cross-arm:20210430
name: "arm Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`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
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:20210430
cpu: 8
memory: 6
environment:
IMAGE: ponylang/ponyc-ci-cross-armhf:20210430
name: "armhf Linux glibc"
libs_cache:
folder: build/libs
fingerprint_script: echo "`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
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"
#
# 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:
CACHE_BUSTER: 20210707
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-rocky8
- name: "nightly: x86-64-unknown-linux-centos8"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-centos8-builder:20210225
environment:
CACHE_BUSTER: 20210225
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-centos8
- name: "nightly: x86-64-unknown-linux-gnu"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-gnu-builder:20200423
environment:
CACHE_BUSTER: 20210224
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:20210714
environment:
CACHE_BUSTER: 20210714
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:20200830
environment:
CACHE_BUSTER: 20210224
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu20.04
- name: "nightly: x86-64-unknown-linux-ubuntu21.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu21.04-builder:20210920
environment:
CACHE_BUSTER: 20210920
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu21.04
- name: "nightly: x86-64-unknown-linux-musl"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
environment:
CACHE_BUSTER: 20210224
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 lib/CMakeLists.txt` ${TRIPLE_VENDOR}-${TRIPLE_OS} ${CACHE_BUSTER}"
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
- echo "IGNORE_OSVERSION = yes" >> /usr/local/etc/pkg.conf
- pkg update
- pkg install -y bash cmake gmake libunwind git py38-pip
- pip install --upgrade cloudsmith-cli
libs_cache:
folder: build/libs
fingerprint_script: echo "`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.1
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 lib/CMakeLists.txt` macos monterey-xcode-13.1 20210710"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
install_script:
- brew install coreutils 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
windows_container:
image: ponylang/ponyc-ci-x86-64-pc-windows-msvc-builder:20210430
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 lib\CMakeLists.txt).Hash + "Windows 20210430"
populate_script:
- ps: .\make.ps1 -Command libs -Generator "Visual Studio 16 2019"
upload_caches:
- libs
config_script:
- ps: .\make.ps1 -Command configure -Config Release -Generator "Visual Studio 16 2019" -Prefix "build\install\release" -Version nightly
build_script:
- ps: .\make.ps1 -Command build -Config Release -Generator "Visual Studio 16 2019" -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:
CACHE_BUSTER: 20210707
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-rocky8
- name: "release: x86-64-unknown-linux-centos8"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-centos8-builder:20210225
environment:
CACHE_BUSTER: 20210225
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-centos8
- name: "release: x86-64-unknown-linux-gnu"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-gnu-builder:20200423
environment:
CACHE_BUSTER: 20200423
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:20210714
environment:
CACHE_BUSTER: 20210714
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:20200830
environment:
CACHE_BUSTER: 20200830
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu20.04
- name: "release: x86-64-unknown-linux-ubuntu21.04"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu21.04-builder:20210920
environment:
CACHE_BUSTER: 20210920
TRIPLE_VENDOR: unknown
TRIPLE_OS: linux-ubuntu21.04
- name: "release: x86-64-unknown-linux-musl"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
environment:
CACHE_BUSTER: 20200421
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 lib/CMakeLists.txt` ${TRIPLE_VENDOR}-${TRIPLE_OS} ${CACHE_BUSTER}"
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
- echo "IGNORE_OSVERSION = yes" >> /usr/local/etc/pkg.conf
- pkg update
- pkg install -y bash cmake gmake libunwind git py38-pip
- pip install --upgrade cloudsmith-cli
libs_cache:
folder: build/libs
fingerprint_script: echo "`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.1
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 lib/CMakeLists.txt` macos monterey-xcode-13.1 20210710"
populate_script: make libs build_flags=-j12
upload_caches:
- libs
install_script:
- brew install coreutils 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
windows_container:
image: ponylang/ponyc-ci-x86-64-pc-windows-msvc-builder:20210430
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 lib\CMakeLists.txt).Hash + "Windows 20210430"
populate_script:
- ps: .\make.ps1 -Command libs -Generator "Visual Studio 16 2019"
upload_caches:
- libs
config_script:
- ps: .\make.ps1 -Command configure -Config Release -Generator "Visual Studio 16 2019" -Prefix "build\install\release" -Version (Get-Content .\VERSION)
build_script:
- ps: .\make.ps1 -Command build -Config Release -Generator "Visual Studio 16 2019" -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-ubuntu20.04 [release]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20200830
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20200830
TARGET: test-stress-release
- name: "Stress Test: x86-64-unknown-linux-ubuntu20.04 [debug]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20200830
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-ubuntu20.04-builder:20200830
TARGET: test-stress-debug
depends_on:
- "Stress Test: x86-64-unknown-linux-ubuntu20.04 [release]"
- name: "Stress Test: x86-64-unknown-linux-musl [release]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
TARGET: test-stress-release
- name: "Stress Test: x86-64-unknown-linux-musl [debug]"
container:
image: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
environment:
IMAGE: ponylang/ponyc-ci-x86-64-unknown-linux-musl-builder:20210420
TARGET: test-stress-debug
depends_on:
- "Stress Test: x86-64-unknown-linux-musl [release]"
container:
cpu: 8
memory: 4
libs_cache:
folder: build/libs
fingerprint_script:
- echo "`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
task:
only_if: $CIRRUS_CRON == "stress"
timeout_in: 120m
arm_container:
image: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu20.04-builder:20211003
cpu: 8
memory: 4
matrix:
- name: "Stress Test: aarch64-unknown-linux-ubuntu20.04 [release]"
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu20.04-builder:20211003
TARGET: test-stress-release
- name: "Stress Test: aarch64-unknown-linux-ubuntu20.04 [debug]"
environment:
IMAGE: ponylang/ponyc-ci-aarch64-unknown-linux-ubuntu20.04-builder:20211003
TARGET: test-stress-debug
depends_on:
- "Stress Test: aarch64-unknown-linux-ubuntu20.04 [release]"
libs_cache:
folder: build/libs
fingerprint_script: echo "`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