Skip to content

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

add first integration CI test to run on eco vcenter

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

Workflow file for this run

---
name: Ansible Eco vCenter Integration Test
on:
pull_request:
branches:
- '**'
push:
branches:
- main
- 'release-\d.\d\d'
permissions:
contents: read
jobs:
ansible_integration_test:
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
working-directory: ansible_collections/cloud/vmware_ops
run: |
make eco-vcenter-ci