/
githubmirror
/
ydb-ansible
Обзор
Документация
Войти
/
githubmirror
/
ydb-ansible
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Makefile
24 строки
446 B
Eugene Arbatsky
V2 Support (#83)
25 июн 2025, 18:22
Не верифицирован
25 июн 2025, 18:22
d3894cf
Код
Авторство
О чём код?
SHELL := bash .ONESHELL: .SHELLFLAGS := -eu -o pipefail -c .DELETE_ON_ERROR: image = ydb-platform-creator-ee:latest build: docker build -t $(image) . .PHONY: build run: docker run \ -ti \ --rm \ --network host \ --mount type=bind,src=${PWD},dst=/opt \ --mount type=bind,src=/var/run/libvirt/libvirt-sock,dst=/var/run/libvirt/libvirt-sock \ $(image) /bin/bash .PHONY: run test: python3 -m unittest discover -v tests/unit .PHONY: test