Add Docker support for Ormin + BaraDB dev stack
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
- docker-compose.ormin.yml: BaraDB + Ormin dev environment - clients/nim/ormin/docker/Dockerfile: dev image with Nim 2.2.10 - clients/nim/ormin/docker/entrypoint.sh: auto-install deps - docker-compose.test.yml: add Ormin compile test
This commit is contained in:
@@ -84,6 +84,23 @@ services:
|
||||
nim c --path:src -r tests/test_integration.nim
|
||||
"
|
||||
|
||||
test-ormin:
|
||||
image: nimlang/nim:2.2.10
|
||||
depends_on:
|
||||
baradb:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
- BARADB_HOST=baradb
|
||||
- BARADB_PORT=9472
|
||||
volumes:
|
||||
- ./clients/nim:/workspace
|
||||
working_dir: /workspace/ormin
|
||||
command: >
|
||||
sh -c "
|
||||
nimble install -y &&
|
||||
nim c examples/baradb_basic.nim
|
||||
"
|
||||
|
||||
test-rust:
|
||||
image: rust:1.78
|
||||
depends_on:
|
||||
|
||||
Reference in New Issue
Block a user