mirror of
https://github.com/ansible/awx.git
synced 2026-03-23 03:45:01 -02:30
Compare commits
1 Commits
AAP-57614-
...
pin-ansibl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0928571777 |
2
.github/actions/run_awx_devel/action.yml
vendored
2
.github/actions/run_awx_devel/action.yml
vendored
@@ -36,7 +36,7 @@ runs:
|
|||||||
|
|
||||||
- name: Upgrade ansible-core
|
- name: Upgrade ansible-core
|
||||||
shell: bash
|
shell: bash
|
||||||
run: python3 -m pip install --upgrade ansible-core
|
run: python3 -m pip install --upgrade 'ansible-core<2.18'
|
||||||
|
|
||||||
- name: Install system deps
|
- name: Install system deps
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -361,7 +361,7 @@ jobs:
|
|||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Upgrade ansible-core
|
- name: Upgrade ansible-core
|
||||||
run: python3 -m pip install --upgrade ansible-core
|
run: python3 -m pip install --upgrade 'ansible-core<2.18'
|
||||||
|
|
||||||
- name: Download coverage artifacts
|
- name: Download coverage artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -378,7 +378,7 @@ test_collection:
|
|||||||
if [ "$(VENV_BASE)" ]; then \
|
if [ "$(VENV_BASE)" ]; then \
|
||||||
. $(VENV_BASE)/awx/bin/activate; \
|
. $(VENV_BASE)/awx/bin/activate; \
|
||||||
fi && \
|
fi && \
|
||||||
if ! [ -x "$(shell command -v ansible-playbook)" ]; then pip install ansible-core; fi
|
if ! [ -x "$(shell command -v ansible-playbook)" ]; then pip install "ansible-core<2.19"; fi
|
||||||
ansible --version
|
ansible --version
|
||||||
py.test $(COLLECTION_TEST_DIRS) $(COVERAGE_ARGS) -v
|
py.test $(COLLECTION_TEST_DIRS) $(COVERAGE_ARGS) -v
|
||||||
@if [ "${GITHUB_ACTIONS}" = "true" ]; \
|
@if [ "${GITHUB_ACTIONS}" = "true" ]; \
|
||||||
@@ -417,7 +417,7 @@ install_collection: build_collection
|
|||||||
test_collection_sanity:
|
test_collection_sanity:
|
||||||
rm -rf awx_collection_build/
|
rm -rf awx_collection_build/
|
||||||
rm -rf $(COLLECTION_INSTALL)
|
rm -rf $(COLLECTION_INSTALL)
|
||||||
if ! [ -x "$(shell command -v ansible-test)" ]; then pip install ansible-core; fi
|
if ! [ -x "$(shell command -v ansible-test)" ]; then pip install "ansible-core<2.19"; fi
|
||||||
ansible --version
|
ansible --version
|
||||||
COLLECTION_VERSION=1.0.0 $(MAKE) install_collection
|
COLLECTION_VERSION=1.0.0 $(MAKE) install_collection
|
||||||
cd $(COLLECTION_INSTALL) && \
|
cd $(COLLECTION_INSTALL) && \
|
||||||
|
|||||||
Reference in New Issue
Block a user