-
Notifications
You must be signed in to change notification settings - Fork 10
120 lines (99 loc) · 3.57 KB
/
unit-tests.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
name: Unit Tests
on:
pull_request:
push:
branches:
- main
- 1.0.x
tags-ignore: [ v.* ]
schedule:
- cron: '0 2 * * *' # every day 2am
jobs:
test:
name: Test
if: github.repository == 'apache/pekko-persistence-cassandra'
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { javaVersion: '8', container: "cassandra-latest", scalaVersion: "++2.13", test: "test" }
- { javaVersion: '8', container: "cassandra-latest", scalaVersion: "++3.3", test: "test" }
- { javaVersion: '11', container: "cassandra-latest", scalaVersion: "++2.12", test: "test" }
- { javaVersion: '11', container: "cassandra-latest", scalaVersion: "++2.13", test: "test" }
- { javaVersion: '8', container: "cassandra-latest", scalaVersion: "++3.3", test: "test" }
- { javaVersion: '11', container: "cassandra2", scalaVersion: "++2.13", test: "'testOnly -- -l RequiresCassandraThree'"}
- { javaVersion: '11', container: "cassandra3", scalaVersion: "++2.13", test: "test" }
env:
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Setup Java ${{ matrix.javaVersion }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.javaVersion }}
- name: Cache Coursier cache
uses: coursier/cache-action@v6
- name: Test against ${{ matrix.container }}
run: |-
docker compose up -d ${{ matrix.container }} && sbt ${{ matrix.scalaVersion }} ${{matrix.test}}
mima:
name: MiMa check
if: github.repository == 'apache/pekko-persistence-cassandra'
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Setup Java 8
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
- name: Cache Coursier cache
uses: coursier/cache-action@v6
- name: MiMa Check
run: sbt +mimaReportBinaryIssues
docs:
name: ScalaDoc, Documentation with Paradox
if: github.repository == 'apache/pekko-persistence-cassandra'
runs-on: ubuntu-22.04
env:
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Setup Java 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Cache Coursier cache
uses: coursier/cache-action@v6
- name: Create all API docs for artifacts/website and all reference docs
run: sbt "unidoc; docs/paradox"