Skip to content

Commit 2b7a772

Browse files
WIP
1 parent 7e85650 commit 2b7a772

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

.github/workflows/community-build.yml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ on:
1313
type: string
1414

1515
jobs:
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'
@@ -40,4 +41,33 @@ jobs:
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

0 commit comments

Comments
 (0)