Skip to content

Commit

Permalink
Bump all pulp_* dependencies
Browse files Browse the repository at this point in the history
Issue: AAH-3064
  • Loading branch information
rochacbruno committed Mar 16, 2024
1 parent 562aa6a commit 0004afe
Show file tree
Hide file tree
Showing 7 changed files with 252 additions and 183 deletions.
27 changes: 18 additions & 9 deletions .github/workflows/ci_automation_hub_collection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: install ansible
run: pip3 install ansible

- name: Checkout the galaxy collection
uses: actions/checkout@v4
Expand All @@ -42,14 +45,20 @@ jobs:
ansible-galaxy collection build -vvv
ansible-galaxy collection install galaxy-galaxy-1.0.0.tar.gz -vvv
- name: Spin up a standalone galaxy_ng installation
run: |
echo "COMPOSE_PROFILE=standalone" > .compose.env
echo "DEV_SOURCE_PATH=galaxy_ng" >> .compose.env
make docker/all
./compose up -d
pip3 install --upgrade requests pyyaml
python3 dev/common/poll.py
# - name: Spin up a standalone galaxy_ng installation
# run: |
# echo "COMPOSE_PROFILE=standalone" > .compose.env
# echo "DEV_SOURCE_PATH=galaxy_ng" >> .compose.env
# make docker/all
# ./compose up -d
# pip3 install --upgrade requests pyyaml
# python3 dev/common/poll.py

- name: run the build container playbook
run: cd dev/playbooks; ansible-playbook -i 'localhost,' --forks=1 -v build_container.yaml

- name: run the start container playbook
run: cd dev/playbooks; ansible-playbook -i 'localhost,' --forks=1 -v start_container.yaml

- name: Test the user playbook
run: ansible-playbook dev/galaxy_collection_plays/user.yml -vvv
Expand Down
1 change: 1 addition & 0 deletions CHANGES/3064.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump pulp* versions
4 changes: 3 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file contains dev requirements to be installed on dev host only
# This file contains dev requirements to be installed on dev host only
# to add requirements to dev container see requirements/requirements-dev.txt

coverage
Expand All @@ -15,3 +15,5 @@ check-manifest

darker
isort

pip-tools
Loading

0 comments on commit 0004afe

Please sign in to comment.