-
Notifications
You must be signed in to change notification settings - Fork 22
35 lines (31 loc) · 873 Bytes
/
scala.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
name: Scala CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'oracle'
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
# sbt test cause gc probem, so run ones separatelly
- name: Run cpsJVM tests
run: sbt cpsJVM/test
- name: Run cpsJS tests
run: sbt cpsJS/test
- name: Run cpsNative tests
run: sbt cpsNative/test
- name: Run compiler-plugin tests
run: sbt compilerPlugin/test
- name: Run logicJVM tests
run: sbt logicJVM/test
- name: Rerun tests interpret by compiler plugin on JVM
run: sbt compilerPluginTestsJVM/test