Skip to content

Commit 0004afe

Browse files
committed
Bump all pulp_* dependencies
Issue: AAH-3064
1 parent 562aa6a commit 0004afe

File tree

7 files changed

+252
-183
lines changed

7 files changed

+252
-183
lines changed

.github/workflows/ci_automation_hub_collection.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
- name: Setup python
2424
uses: actions/setup-python@v4
2525
with:
26-
python-version: "3.10"
26+
python-version: "3.11"
27+
28+
- name: install ansible
29+
run: pip3 install ansible
2730

2831
- name: Checkout the galaxy collection
2932
uses: actions/checkout@v4
@@ -42,14 +45,20 @@ jobs:
4245
ansible-galaxy collection build -vvv
4346
ansible-galaxy collection install galaxy-galaxy-1.0.0.tar.gz -vvv
4447
45-
- name: Spin up a standalone galaxy_ng installation
46-
run: |
47-
echo "COMPOSE_PROFILE=standalone" > .compose.env
48-
echo "DEV_SOURCE_PATH=galaxy_ng" >> .compose.env
49-
make docker/all
50-
./compose up -d
51-
pip3 install --upgrade requests pyyaml
52-
python3 dev/common/poll.py
48+
# - name: Spin up a standalone galaxy_ng installation
49+
# run: |
50+
# echo "COMPOSE_PROFILE=standalone" > .compose.env
51+
# echo "DEV_SOURCE_PATH=galaxy_ng" >> .compose.env
52+
# make docker/all
53+
# ./compose up -d
54+
# pip3 install --upgrade requests pyyaml
55+
# python3 dev/common/poll.py
56+
57+
- name: run the build container playbook
58+
run: cd dev/playbooks; ansible-playbook -i 'localhost,' --forks=1 -v build_container.yaml
59+
60+
- name: run the start container playbook
61+
run: cd dev/playbooks; ansible-playbook -i 'localhost,' --forks=1 -v start_container.yaml
5362

5463
- name: Test the user playbook
5564
run: ansible-playbook dev/galaxy_collection_plays/user.yml -vvv

CHANGES/3064.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump pulp* versions

dev_requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file contains dev requirements to be installed on dev host only
1+
# This file contains dev requirements to be installed on dev host only
22
# to add requirements to dev container see requirements/requirements-dev.txt
33

44
coverage
@@ -15,3 +15,5 @@ check-manifest
1515

1616
darker
1717
isort
18+
19+
pip-tools

0 commit comments

Comments
 (0)