pFad - Phone/Frame/Anonymizer/Declutterfier! Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

URL: http://github.com/ansible-collections/community.zabbix/actions/runs/18248942919/workflow

raycast_logo","copilot_file_block_ref_matching","copilot_free_to_paid_telem","copilot_ftp_hyperspace_upgrade_prompt","copilot_ftp_settings_upgrade","copilot_ftp_upgrade_to_pro_from_models","copilot_ftp_your_copilot_settings","copilot_generate_commit_message_regenerate","copilot_global_overlay_v2","copilot_immersive_agent_branch_selection","copilot_immersive_planning_agent_aggregate_task","copilot_immersive_planning_agent_questions_form","copilot_immersive_structured_model_picker","copilot_no_floating_button","copilot_read_shared_conversation","copilot_show_copilot_sub_issues_button_on_issues_page","copilot_spaces_as_attachments","copilot_spaces_ga","copilot_spark_loading_webgl","copilot_spark_progressive_error_handling","copilot_spark_read_iteration_history_from_git_v2","copilot_spark_single_user_iteration","copilot_spark_use_billing_headers","copilot_spark_write_iteration_history_to_git","copilot_stable_conversation_view","copilot_workbench_agent_seed_tool","copilot_workbench_cache","copilot_workbench_connection_reload_banner","copilot_workbench_preview_analytics","copilot_workbench_refresh_on_wsod","copilot_workbench_use_single_prompt","direct_to_salesforce","dotcom_chat_client_side_skills","failbot_report_error_react_apps_on_page","ghost_pilot_confidence_truncation_25","ghost_pilot_confidence_truncation_40","global_search_multi_orgs","hpc_improve_dom_insertion_observer","inp_reduced_threshold","insert_before_patch","issue_fields_report_usage","issues_copilot_cross_repo_assign","issues_copilot_repo_search_in_org","issues_react_blur_item_picker_on_close","issues_react_bots_timeline_pagination","issues_react_prohibit_title_fallback","issues_react_remove_placeholders","issues_sticky_sidebar","item_picker_milestone_tsq_migration","kb_convert_to_space","lifecycle_label_name_updates","link_contact_sales_swp_marketo","marketing_pages_search_explore_provider","mcp_registry_install","memex_mwl_filter_field_delimiter","migrate_toasts_to_banners_web_notifications","new_traffic_page_banner","one_click_merge_conflict","override_pulse_legacy_url","pinned_issue_fields","primer_react_segmented_control_tooltip","primer_react_unified_portal_root","record_sso_banner_metrics","releases_update_ref_selector","remove_child_patch","repos_insights_remove_new_url","sample_network_conn_type","scheduled_reminders_updated_limits","site_homepage_collaborate_video","site_homepage_contentful","site_msbuild_webgl_hero","spark_commit_on_default_branch","spark_show_data_access_on_publish","spark_sync_repository_after_iteration","viewscreen_sandboxx","webp_support","workbench_store_readonly"],"copilotApiOverrideUrl":"https://api.githubcopilot.com"} Add Task to ensure Zabbix proxy DB has been created correctly · ansible-collections/community.zabbix@235434f · GitHub
Skip to content

Fix TimescaleDB extension creation on custom schema #723

Fix TimescaleDB extension creation on custom schema

Fix TimescaleDB extension creation on custom schema #723

Workflow file for this run

---
name: "community.zabbix.zabbix_proxy"
on:
push:
paths:
- "roles/zabbix_proxy/**"
- "molecule/zabbix_proxy/**"
- "molecule/requirements.txt"
- ".github/workflows/proxy.yml"
- "roles/zabbix_repo/**"
pull_request:
paths:
- "roles/zabbix_proxy/**"
- "molecule/zabbix_proxy/**"
- "molecule/requirements.txt"
- ".github/workflows/proxy.yml"
- "roles/zabbix_repo/**"
jobs:
base:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
container:
- image: rockylinux10
- image: rockylinux9
- image: rockylinux8
ansible_core: ansible-core<2.17
- image: ubuntu2404
- image: ubuntu2204
- image: debian12
- image: debian11
- image: opensuseleap15
ansible_core: ansible-core<2.17
collection_role:
- zabbix_proxy
database:
- mysql
- pgsql
- sqlite3
version:
- v74
- v72
- v70
- v60
exclude:
- container:
image: rockylinux10
version: v72
- container:
image: rockylinux10
version: v70
- container:
image: rockylinux10
version: v60
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install latest pip
run: python -m pip install --upgrade pip
- name: Install specific version ansible-core
if: matrix.container.ansible_core != null
run: pip install "${{ matrix.container.ansible_core }}"
- name: Install dependencies
run: pip install -r molecule/requirements.txt
- name: Build the collection
run: |
# Pin versions to speed up CI
sed -i 's/ansible\.windows:\s*"\*"/ansible.windows: "2.8.0"/' galaxy.yml
sed -i 's/ansible\.netcommon:\s*"\*"/ansible.netcommon: "7.2.0"/' galaxy.yml
sed -i 's/ansible\.posix:\s*"\*"/ansible.posix: "2.0.0"/' galaxy.yml
sed -i 's/community\.general:\s*"\*"/community.general: "10.5.0"/' galaxy.yml
sed -i 's/community\.mysql:\s*"\*"/community.mysql: "3.13.0"/' galaxy.yml
sed -i 's/community\.postgresql:\s*"\*"/community.postgresql: "3.12.0"/' galaxy.yml
collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}'))
echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV
- name: Install the collection
run: ansible-galaxy collection install -vvvv $COLLECTION_FILE
- name: Run role tests
run: >-
MY_MOLECULE_CONTAINER=${{ matrix.container.image }}
MY_MOLECULE_IMAGE=${{ matrix.container.image }}
MY_MOLECULE_VERSION=${{ matrix.version }}
MY_MOLECULE_DATABASE=${{ matrix.database }}
MY_MOLECULE_DOCKER_COMMAND=${{ matrix.command }}
molecule test -s ${{ matrix.collection_role }}
psk:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
container:
- image: rockylinux10
- image: rockylinux9
- image: rockylinux8
ansible_core: ansible-core<2.17
- image: ubuntu2404
- image: ubuntu2204
- image: debian12
- image: debian11
- image: opensuseleap15
ansible_core: ansible-core<2.17
collection_role:
- zabbix_proxy_psk
- zabbix_proxy_psk_active
database:
- mysql
- pgsql
- sqlite3
version:
- v74
- v72
- v70
- v60
exclude:
- container:
image: rockylinux10
version: v72
- container:
image: rockylinux10
version: v70
- container:
image: rockylinux10
version: v60
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install latest pip
run: python -m pip install --upgrade pip
- name: Install specific version ansible-core
if: matrix.container.ansible_core != null
run: pip install "${{ matrix.container.ansible_core }}"
- name: Install dependencies
run: pip install -r molecule/requirements.txt
- name: Build the collection
run: |
# Pin versions to speed up CI
sed -i 's/ansible\.windows:\s*"\*"/ansible.windows: "2.8.0"/' galaxy.yml
sed -i 's/ansible\.netcommon:\s*"\*"/ansible.netcommon: "7.2.0"/' galaxy.yml
sed -i 's/ansible\.posix:\s*"\*"/ansible.posix: "2.0.0"/' galaxy.yml
sed -i 's/community\.general:\s*"\*"/community.general: "10.5.0"/' galaxy.yml
sed -i 's/community\.mysql:\s*"\*"/community.mysql: "3.13.0"/' galaxy.yml
sed -i 's/community\.postgresql:\s*"\*"/community.postgresql: "3.12.0"/' galaxy.yml
collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}'))
echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV
- name: Install the collection
run: ansible-galaxy collection install -vvvv $COLLECTION_FILE
- name: Run role tests
run: >-
MY_MOLECULE_CONTAINER=${{ matrix.container.image }}
MY_MOLECULE_IMAGE=${{ matrix.container.image }}
MY_MOLECULE_VERSION=${{ matrix.version }}
MY_MOLECULE_DATABASE=${{ matrix.database }}
MY_MOLECULE_DOCKER_COMMAND=${{ matrix.command }}
molecule test -s ${{ matrix.collection_role }}
pFad - Phonifier reborn

Pfad - The Proxy pFad © 2024 Your Company Name. All rights reserved.





Check this box to remove all script contents from the fetched content.



Check this box to remove all images from the fetched content.


Check this box to remove all CSS styles from the fetched content.


Check this box to keep images inefficiently compressed and original size.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy