Skip to content

Commit 0e4364d

Browse files
Fix dockerised tests
1 parent 0bee013 commit 0e4364d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,14 @@ jobs:
4646
- name: Build Dockerised CLI
4747
run: sbt cli/docker
4848

49-
- run: |
50-
49+
- name: Test repos
50+
shell: bash
51+
run: |
5152
set -eu
5253
check_repo() {
5354
REPO=$1
5455
mkdir -p .repos/$REPO
55-
git clone https://github.com/$REPO.git .repos/$REPO
56+
git clone https://github.com/$REPO.git .repos/$REPO && cd .repos/$REPO && git submodule update --init
5657
5758
docker run -v $PWD/.repos/$REPO:/sources -w /sources sourcegraph/scip-java:latest scip-java index
5859
file .repos/$REPO/index.scip || (echo "$REPO SCIP index doesn't exist!"; exit 1)

0 commit comments

Comments
 (0)