@@ -9,9 +9,9 @@ name: Continuous Integration
9
9
10
10
on :
11
11
pull_request :
12
- branches : ['**', '!update/**']
12
+ branches : ['**', '!update/**', '!pr/**' ]
13
13
push :
14
- branches : ['**', '!update/**']
14
+ branches : ['**', '!update/**', '!pr/**' ]
15
15
tags : [v*]
16
16
17
17
env :
@@ -29,10 +29,12 @@ jobs:
29
29
fail-fast : false
30
30
matrix :
31
31
os : [ubuntu-latest]
32
- scala : [2.13.8, 3.1.2]
32
+ scala : [2.12.16, 2. 13.8, 3.1.2]
33
33
java : [temurin@11, temurin@17]
34
34
project : [rootJVM]
35
35
exclude :
36
+ - scala : 2.12.16
37
+ java : temurin@17
36
38
- scala : 3.1.2
37
39
java : temurin@17
38
40
runs-on : ${{ matrix.os }}
@@ -187,6 +189,16 @@ jobs:
187
189
~/Library/Caches/Coursier/v1
188
190
key : ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
189
191
192
+ - name : Download target directories (2.12.16, rootJVM)
193
+ uses : actions/download-artifact@v2
194
+ with :
195
+ name : target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJVM
196
+
197
+ - name : Inflate target directories (2.12.16, rootJVM)
198
+ run : |
199
+ tar xf targets.tar
200
+ rm targets.tar
201
+
190
202
- name : Download target directories (2.13.8, rootJVM)
191
203
uses : actions/download-artifact@v2
192
204
with :
0 commit comments