| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
- Document steps for adding I18N in builds
- Add "clean-language" target to remove *.mo files
Signed-off-by: Hideki Saito <saito@fgrep.org>
|
| |
|
| |
|
|
|
|
| |
target to clean ui_next as well.
|
|
|
|
| |
This reverts commit ec92abf014c51acc50dd4155d67a97623361f99b.
|
|
|
|
| |
This reverts commit fe850dff3886be66bc7ad504800e86f179217620.
|
|
|
|
| |
pip 19 added support for something called `pyproject.toml`. Several packages have been setting the option `build-backend = "setuptools.build_meta”` (bcrypt, attrs, jaraco) which seems to be the root of the problem when building from source. Until the community sorts this out I’m inclined to avoid pip 19.
|
|
|
|
| |
Signed-off-by: Yanis Guenane <yanis@guenane.org>
|
|
|
|
| |
When you do `make docker-compose-build` on your branch without any changes, this will use the devel tag as a cache source. This will speed things up if you havent made any local changes to the Makefile or requirements files.
|
|\
| |
| |
| |
| | |
make activity stream action_node deterministic for Swagger docs
Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
|
| | |
|
|/
|
|
|
| |
- Made make target names consistent with our other commands
- Found some unnecessary code, deleted it
|
|
|
|
| |
There was quite a bit of drift between the main Dockerfile and this one since we last touched it. It’s heavier than it needs to be, but by using the main development image as the base here, we have less duplicated and outdated code overall.
|
| |
|
|
|
|
| |
Shaves 20 seconds off of rebooting the dev environment on Linux.
|
|
|
|
| |
This was intended to save us CI time if / when we switch away from static nodes for Zuul. After merging this in I discovered that this option does not work with `docker build --cache-from`, which will be more benefical in terms of speed improvements anyway.
|
|
|
|
|
|
|
|
|
|
| |
This commit does a few things:
- Add the `--squash` option to the `awx-devel-build` make target. This reduces the resulting image size from 2.12 GB to 1.37 GB. I think we can get this down even more by inspecting the image contents.
- Reorganize commands so that the cache expires less often. Before this commit, any changes to the Makefile would essentially cause the entire image to rebuild.
- Break yum dependencies up into multiple lines. This makes it easier to see what changes in a diff.
- Use `n` to install our required version of node (rather `curl node | bash`). I’ve found this to be easier to maintain / more portable when working with other Dockerfiles.
- General organizational changes to make things easier to parse visually.
|
|
|
|
|
| |
using supervisor gives us the ability to restart entire processes on
code change (like the dispatcher and callback receiver)
|
|
|
|
|
|
| |
not just the first time uwsgi is brought up.
related #3846
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| | |
add support for custom py3 ansible virtualenvs
Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| | |
swap file order so diff of schema makes more sense
Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
|
| |
| |
| | |
This way we will get +'s next to new content :)
|
|/ |
|
| |
|
|
|
|
|
|
| |
The make target fails when it detects schema changes, not when schema is invalid.
Also update CONTRIBUTING.md to include information about zuul jobs.
|
| |
|
|
|
|
|
| |
Fetches reference schema from public bucket
Still need define method for updating reference schema on merge.
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| | |
I’m not actually this pedantic, I just need something to tag.
|
| |
| |
| |
| | |
I wanted to pass `—user` to `docker-compose` up, but that option doesnt exist. To get around this, I had to record the uid on the host (CURRENT_UID), interpolate the variable in tools/docker-compose.yml, and detect that inside the container. I then piggy-backed on the /etc/passwd hack we use for scenarios with unpredictable uids.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
this commit implements the bulk of `awx-manage run_dispatcher`, a new
command that binds to RabbitMQ via kombu and balances messages across
a pool of workers that are similar to celeryd workers in spirit.
Specifically, this includes:
- a new decorator, `awx.main.dispatch.task`, which can be used to
decorate functions or classes so that they can be designated as
"Tasks"
- support for fanout/broadcast tasks (at this point in time, only
`conf.Setting` memcached flushes use this functionality)
- support for job reaping
- support for success/failure hooks for job runs (i.e.,
`handle_work_success` and `handle_work_error`)
- support for auto scaling worker pool that scale processes up and down
on demand
- minimal support for RPC, such as status checks and pool recycle/reload
|
| |
| |
| |
| | |
boto is still used by AWX itself.
|
| | |
|