-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from armanbilge/pr/cirrus-ci
Setup Cirrus ARM CI
- Loading branch information
Showing
5 changed files
with
66 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
native_arm_task: | ||
arm_container: | ||
dockerfile: .cirrus/Dockerfile | ||
cpu: 2 | ||
memory: 8G | ||
matrix: | ||
- name: Native ARM 2.12 | ||
script: sbt '++ 2.12' testsNative/test | ||
- name: Native ARM 2.13 | ||
script: sbt '++ 2.13' testsNative/test | ||
- name: Native ARM 3 | ||
script: sbt '++ 3' testsNative/test | ||
|
||
native_macos_task: | ||
macos_instance: | ||
image: ghcr.io/cirruslabs/macos-ventura-base:latest | ||
cpu: 2 | ||
memory: 8G | ||
matrix: | ||
- name: Native Apple Silicon 2.12 | ||
script: | ||
- brew install sbt | ||
- sbt '++ 2.12' testsNative/test | ||
- name: Native Apple Silicon 2.13 | ||
script: | ||
- brew install sbt | ||
- sbt '++ 2.13' testsNative/test | ||
- name: Native Apple Silicon 3 | ||
script: | ||
- brew install sbt | ||
- sbt '++ 3' testsNative/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-17.0.5_8_1.8.2_3.2.2 | ||
|
||
RUN apt-get update && apt-get install -y clang |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters