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 1313 type : string
1414
1515jobs :
16- build :
16+ build_from_source :
1717 runs-on : ubuntu-latest
1818 steps :
1919 - uses : actions/checkout@v3
2020 with :
2121 fetch-depth : 0
22+
2223 - uses : actions/setup-java@v3
2324 with :
2425 distribution : ' temurin'
4041 if-no-files-found : error
4142
4243
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 }}
4373
You can’t perform that action at this time.
0 commit comments