awslabs/benchmark-ai

R.E.S.P.E.C.T Makefile Targets!!!!

开放

#634 创建于 2019年7月25日

 (0 条评论) (0 个反应) (1 位负责人)Python (6 个派生)auto 404
documentationenhancementgood first issue

仓库指标

星标
 (19 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Let's go through and make sure that everything can be built with make and that they all have these targets:

clean-all -> [build -> test] -> [package -> publish] -> deploy

The brackets indicate where dependencies are allowed. So for build you may build and test For publish, you may depend on making sure publishable artifacts are packaged. The contract for "clean-all" is that it guarantees that there are not superfluous artifacts in the tree. (everyone should have a "clean" but it is not being mandated here).

Please check through all the Makefiles so that they behave appropriately.

  • ./baictl/Makefile
  • ./bff/Makefile
  • ./blackbox-tests/Makefile **
  • ./client-lib/Makefile
  • ./executor/integration_tests/Makefile
  • ./executor/Makefile
  • ./fetcher/integration_tests/Makefile
  • ./fetcher/Makefile
  • ./fetcher/mock-fetcher-job/Makefile **
  • ./fetcher-job/Makefile
  • ./kafka-utils/integration_tests/Makefile
  • ./kafka-utils/Makefile
  • ./metrics-extractor/Makefile
  • ./metrics-pusher/Makefile
  • ./prometheus-kafka-topic-exporter/Makefile
  • ./puller/Makefile
  • ./sm-executor/Makefile
  • ./watcher/Makefile

** make sure that they behave appropriately, and output something that makes sense to the caller

贡献者指南