-
Notifications
You must be signed in to change notification settings - Fork 521
/
.cirrus.yml
36 lines (34 loc) · 1.1 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
jvm_highcore_task:
only_if: $CIRRUS_TAG != '' || $CIRRUS_PR != ''
required_pr_labels: Cirrus JVM
container:
image: sbtscala/scala-sbt:eclipse-temurin-jammy-17.0.5_8_1.9.0_3.3.0
cpu: 8
memory: 16G
matrix:
- name: JVM high-core-count 2.13
script: sbt '++ 2.13' testsJVM/test ioAppTestsJVM/test
- name: JVM high-core-count 3
script: sbt '++ 3' testsJVM/test ioAppTestsJVM/test
jvm_arm_highcore_task:
only_if: $CIRRUS_TAG != '' || $CIRRUS_PR != ''
required_pr_labels: Cirrus JVM
arm_container:
image: sbtscala/scala-sbt:eclipse-temurin-jammy-17.0.5_8_1.9.0_3.3.0
cpu: 4
memory: 8G
matrix:
- name: JVM ARM high-core-count 2.13
script: sbt '++ 2.13' testsJVM/test ioAppTestsJVM/test
- name: JVM ARM high-core-count 3
script: sbt '++ 3' testsJVM/test ioAppTestsJVM/test
native_arm_task:
only_if: $CIRRUS_TAG != '' || $CIRRUS_PR != ''
required_pr_labels: Cirrus Native
arm_container:
dockerfile: .cirrus/Dockerfile
cpu: 2
memory: 8G
matrix:
- name: Native ARM 3
script: sbt '++ 3' testsNative/test ioAppTestsNative/test