Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-05-01 21:57:03 +0300
committerGitHub <noreply@github.com>2019-05-01 21:57:03 +0300
commit3161a91d7e4c8ae16bdc0563edf66d71e8424e69 (patch)
treed1676d7ead526f4b9199f9e02159da22aa61fc03 /MANIFEST.in
parent5d4c73e197aef33b078b0ed38758ab82cc42dca9 (diff)
Implement a framework for having common code for release scripts (#55893)
* Implement a framework for having common code for release scripts * Release scripts will go through hacking/build-ansible. build-ansible is a pluggable script which will set a directory that has common code for non-enduser scripts. It will then invoke the plugin which implements that subcommand. Uses straight.plugin for loading each sub-command. * We're going to add tools which are needed to test ansible (the changelog generation, for instance) so we need to include the pieces relevant to that in the tarball. * Add straight.plugin to the sanity test requirements for the same reason * Skip compile test just for build-ansible plugins which won't be run as part of sanity tests.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r--MANIFEST.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 2bb21538e05..f70bced34a2 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -25,3 +25,5 @@ include changelogs/CHANGELOG*.rst
include contrib/README.md
recursive-include contrib/inventory *
exclude test/sanity/code-smell/botmeta.*
+recursive-include hacking/build_library *.py
+include hacking/build-ansible