Skip to content

Commit 6d58b6c

Browse files
authored
Merge pull request #126 from code0-tech/44-add-boot-tests/taurus
Add boot test for taurus
2 parents 5a54c3b + b62132e commit 6d58b6c

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

.gitlab/ci/container-boot.gitlab-ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,16 @@ container:boot:aquila:
6262
- docker compose logs aquila -f &
6363
- support/grpc_check_health --host docker:8081 --service liveness --retries 20
6464
- support/grpc_check_health --host docker:8081 --service readiness --retries 20
65+
66+
container:boot:taurus:
67+
extends:
68+
- .container:boot
69+
needs:
70+
- container:taurus
71+
script:
72+
- bundle install
73+
- docker compose up nats -d
74+
- docker compose up taurus -d
75+
- docker compose logs taurus -f &
76+
- support/grpc_check_health --host docker:8082 --service liveness --retries 20
77+
- support/grpc_check_health --host docker:8082 --service readiness --retries 20

support/docker-compose.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,17 @@ services:
6363
ports:
6464
- "8081:8081"
6565

66+
taurus:
67+
image: ghcr.io/code0-tech/reticulum/ci-builds/taurus:${CI_PIPELINE_ID}
68+
networks:
69+
- boot
70+
environment:
71+
NATS_URL: nats://nats:4222
72+
WITH_HEALTH_SERVICE: "true"
73+
GRPC_HOST: 0.0.0.0
74+
GRPC_PORT: "8082"
75+
ports:
76+
- "8082:8082"
77+
6678
networks:
6779
boot:

support/download_projects

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
set -e
44

5-
source scripts/helpers.sh
5+
source support/helpers.sh
66

77
rm -rf projects/*
88
mkdir -p projects
99

1010
download_project aquila
1111
download_project draco
1212
download_project sagittarius
13+
download_project taurus

versions/taurus

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
52f3377976256b2462242d6858d7df63c21bb121
1+
28402c1af65bd6df71061a38509621fa6cecdff3

0 commit comments

Comments
 (0)