Skip to content

Commit 618fc7f

Browse files
WIP
1 parent 3c97f4b commit 618fc7f

File tree

2 files changed

+17
-19
lines changed

2 files changed

+17
-19
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
os: [ubuntu-latest]
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141

4242
- uses: actions/setup-java@v3
4343
with:
@@ -48,25 +48,15 @@ jobs:
4848
- uses: sbt/setup-sbt@v1
4949

5050
- name: Build Dockerised CLI
51-
run: sbt cli/docker
52-
53-
- name: Test repos
54-
shell: bash
55-
run: |
56-
set -eu
57-
check_repo() {
58-
REPO=$1
59-
mkdir -p .repos/$REPO
60-
git clone https://github.com/$REPO.git .repos/$REPO && cd .repos/$REPO && git submodule update --init
51+
run: sbt cli/docker dumpScipJavaVersion
6152

62-
docker run -v $PWD/.repos/$REPO:/sources -w /sources sourcegraph/scip-java:latest scip-java index
63-
file .repos/$REPO/index.scip || (echo "$REPO SCIP index doesn't exist!"; exit 1)
64-
}
65-
66-
sudo apt install parallel
67-
export -f check_repo
68-
69-
parallel -j4 check_repo ::: circe/circe indeedeng/iwf-java-sdk
53+
- uses: actions/checkout@v3
54+
with:
55+
path: sources
56+
repository: spring-projects/spring-boot
57+
58+
- run: |
59+
docker run -v $PWD/sources:/sources -w /sources sourcegraph/scip-java:$(cat VERSION) scip-java index
7060
7161
bazel:
7262
runs-on: ubuntu-latest

.github/workflows/community-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ jobs:
5151
- repo: spring-projects/spring-data-relational
5252
jdk: 17
5353
cache: maven
54+
55+
- repo: spring-projects/spring-framework
56+
jdk: 17
57+
cache: maven
58+
59+
- repo: spring-projects/spring-boot
60+
jdk: 17
61+
cache: maven
5462
steps:
5563
- name: Download binaries
5664
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)