Skip to content

Commit 1d20d10

Browse files
committed
fix(test): clone local-network submodule necessary for testing containers
1 parent 42dff01 commit 1d20d10

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/tap_integration_test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ jobs:
4545
# registry: ghcr.io
4646
# username: ${{ github.actor }}
4747
# password: ${{ secrets.GITHUB_TOKEN }}
48+
# TODO: Improve this later
49+
# evaluate if it makes sense to use a git submodule instead
50+
- name: Clone local-network dependency for Docker builds
51+
run: |
52+
cd contrib/
53+
if [ ! -d "local-network" ]; then
54+
git clone https://github.com/semiotic-ai/local-network.git
55+
cd local-network
56+
git checkout suchapalaver/test/horizon
57+
fi
58+
4859
- name: Build indexer-service image with Docker Compose
4960
run: docker compose -f contrib/docker-compose.yml build indexer-service
5061

0 commit comments

Comments
 (0)