Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
antonsviridov-src committed Nov 11, 2024
1 parent 7e85650 commit 2b7a772
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/community-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ on:
type: string

jobs:
build:
build_from_source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
Expand All @@ -40,4 +41,33 @@ jobs:
if-no-files-found: error


community_build:
runs-on: ubuntu-latest
needs: [build_from_source]
strategy:
fail-fast: true
matrix:
include:
- repo: spring-projects/spring-data-relational
jdk: 11
cache: maven
steps:
- name: Download binaries
uses: actions/download-artifact@v4
id: scip-java-binary
with:
path: binaries

- name: List downloaded binaries
run: ls -R binaries

- uses: actions/checkout@v3
with:
repository: ${{ matrix.repo }}

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
cache: ${{ matrix.cache }}

0 comments on commit 2b7a772

Please sign in to comment.