-
-
Notifications
You must be signed in to change notification settings - Fork 571
Expand file tree
/
Copy path.cirrus.yml
More file actions
25 lines (24 loc) · 815 Bytes
/
.cirrus.yml
File metadata and controls
25 lines (24 loc) · 815 Bytes
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
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
native_highcore_task:
only_if: $CIRRUS_TAG != '' || $CIRRUS_PR != ''
required_pr_labels: Cirrus Native
container:
dockerfile: .cirrus/Dockerfile
cpu: 8
memory: 16G
matrix:
- name: Native high-core-count 2.13
script: sbt '++ 2.13' testsNative/test ioAppTestsNative/test
- name: Native high-core-count 3
script: sbt '++ 3' testsNative/test ioAppTestsNative/test