File tree Expand file tree Collapse file tree 2 files changed +17
-19
lines changed Expand file tree Collapse file tree 2 files changed +17
-19
lines changed Original file line number Diff line number Diff line change 37
37
matrix :
38
38
os : [ubuntu-latest]
39
39
steps :
40
- - uses : actions/checkout@v2
40
+ - uses : actions/checkout@v3
41
41
42
42
- uses : actions/setup-java@v3
43
43
with :
@@ -48,25 +48,15 @@ jobs:
48
48
- uses : sbt/setup-sbt@v1
49
49
50
50
- 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
61
52
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
70
60
71
61
bazel :
72
62
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 51
51
- repo : spring-projects/spring-data-relational
52
52
jdk : 17
53
53
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
54
62
steps :
55
63
- name : Download binaries
56
64
uses : actions/download-artifact@v4
You can’t perform that action at this time.
0 commit comments