File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 13
13
type : string
14
14
15
15
jobs :
16
- build :
16
+ build_from_source :
17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- uses : actions/checkout@v3
20
20
with :
21
21
fetch-depth : 0
22
+
22
23
- uses : actions/setup-java@v3
23
24
with :
24
25
distribution : ' temurin'
40
41
if-no-files-found : error
41
42
42
43
44
+ community_build :
45
+ runs-on : ubuntu-latest
46
+ needs : [build_from_source]
47
+ strategy :
48
+ fail-fast : true
49
+ matrix :
50
+ include :
51
+ - repo : spring-projects/spring-data-relational
52
+ jdk : 11
53
+ cache : maven
54
+ steps :
55
+ - name : Download binaries
56
+ uses : actions/download-artifact@v4
57
+ id : scip-java-binary
58
+ with :
59
+ path : binaries
60
+
61
+ - name : List downloaded binaries
62
+ run : ls -R binaries
63
+
64
+ - uses : actions/checkout@v3
65
+ with :
66
+ repository : ${{ matrix.repo }}
67
+
68
+ - uses : actions/setup-java@v3
69
+ with :
70
+ distribution : ' temurin'
71
+ java-version : ${{ matrix.jdk }}
72
+ cache : ${{ matrix.cache }}
43
73
You can’t perform that action at this time.
0 commit comments