We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42dff01 commit 1d20d10Copy full SHA for 1d20d10
.github/workflows/tap_integration_test.yml
@@ -45,6 +45,17 @@ jobs:
45
# registry: ghcr.io
46
# username: ${{ github.actor }}
47
# 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
+
59
- name: Build indexer-service image with Docker Compose
60
run: docker compose -f contrib/docker-compose.yml build indexer-service
61
0 commit comments