Skip to content

add first integration CI test to run on eco vcenter #71

add first integration CI test to run on eco vcenter

add first integration CI test to run on eco vcenter #71

Workflow file for this run

---
name: Ansible Eco vCenter Integration Test
on:
workflow_dispatch:
issue_comment:
types: [created]
pull_request:
branches:
- '**'
push:
branches:
- main
- 'release-\d.\d\d'
permissions:
contents: read
jobs:
ansible_integration_test:
if: ${{
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '/run-integration-on-vcenter'))
}}
runs-on: ["self-hosted", linux, X64]
steps:
- name: Update pip, git
if: runner.os == 'Linux' && startsWith(runner.name, 'ubuntu')
run: |
set -euxo pipefail
sudo apt-get update
sudo apt-get install podman
- name: Checkout repo
uses: actions/checkout@v4
with:
path: ansible_collections/cloud/vmware_ops
- name: Generate integration config
working-directory: ansible_collections/cloud/vmware_ops/scripts
run: |
chmod +x generate_integration_config.sh
./generate_integration_config.sh
env:
VCENTER_HOSTNAME: ${{ secrets.VCENTER_HOSTNAME }}
VCENTER_USERNAME: ${{ secrets.VCENTER_USERNAME }}
VCENTER_PASSWORD: ${{ secrets.VCENTER_PASSWORD }}
- name: Run integration tests
run: |
python3 -m venv .venv
source .venv/bin/activate
make eco-vcenter-ci
working-directory: ansible_collections/cloud/vmware_ops
env:
ANSIBLE_COLLECTIONS_PATH: "${{ github.workspace }}"