-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI workflow to test galaxy_collection against the dab_jwt profile
No-Issue
- Loading branch information
1 parent
d76895a
commit e4ae76a
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
92 changes: 92 additions & 0 deletions
92
.github/workflows/ci_automation_hub_collection_dab_jwt.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
--- | ||
name: Galaxy Collection CI - dab_jwt | ||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
paths-ignore: | ||
- "CHANGES/**" | ||
- "docs/**" | ||
- "mkdocs.yml" | ||
push: | ||
branches: | ||
- "*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
galaxy_collection: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout galaxy_ng | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: install ansible | ||
run: pip3 install ansible | ||
|
||
- name: Checkout the galaxy collection | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ansible/galaxy_collection | ||
path: galaxy_collection | ||
|
||
- name: Build and install the collection | ||
working-directory: galaxy_collection | ||
run: | | ||
# The ansible.cfg defined in the collection repository might break the test. We want the same variables for installation and running. | ||
rm -f ansible.cfg | ||
rm -f galaxy.yml | ||
mv .github/files/galaxy.yml.j2 . | ||
ansible all -i localhost, -c local -m template -a "src=galaxy.yml.j2 dest=galaxy.yml" -e collection_namespace=galaxy -e collection_name=galaxy -e collection_version=1.0.0 -e collection_repo=https://github.com/ansible/automation_hub_collection | ||
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: set env vars | ||
run: | | ||
echo "OCI_ENV_PATH=${HOME}/work/galaxy_ng/oci_env" >> $GITHUB_ENV | ||
echo "COMPOSE_INTERACTIVE_NO_CLI=1" >> $GITHUB_ENV | ||
echo "OCI_VERBOSE=1" >> $GITHUB_ENV | ||
echo "GH_DUMP_LOGS=0" >> $GITHUB_ENV | ||
- name: setup oci-env | ||
run: | | ||
git clone https://github.com/pulp/oci_env.git $OCI_ENV_PATH | ||
pip install -e $OCI_ENV_PATH/client/ | ||
mkdir $OCI_ENV_PATH/db_backup/ | ||
- name: run the dab_jwt stack detached | ||
run: OCI_COMPOSE_DETACH=1 make oci/dab_jwt | ||
|
||
- name: wait for the system to start | ||
run: make oci/dab_jwt/poll | ||
|
||
- name: create the test users+data | ||
run: docker exec -t ci-dab-proxy_pulp_1 bash -c 'cd /src/galaxy_ng; django-admin shell < ./dev/common/setup_test_data.py' | ||
|
||
- name: make messages | ||
run: docker exec -t ci-dab-proxy_pulp_1 bash -c 'cd /src/galaxy_ng/galaxy_ng; django-admin makemessages --all' | ||
|
||
- name: Test the user playbook | ||
run: ansible-playbook dev/galaxy_collection_plays/user.yml -vvv | ||
|
||
- name: Test the content playbook | ||
run: ansible-playbook dev/galaxy_collection_plays/content.yml -vvv | ||
|
||
- name: Test the repo playbook | ||
run: ansible-playbook dev/galaxy_collection_plays/repo.yml -vvv | ||
|
||
- name: Test the ee playbook | ||
run: ansible-playbook dev/galaxy_collection_plays/ee.yml -vvv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters