mirror of
https://github.com/Napsty/check_esxi_hardware.git
synced 2024-11-22 18:33:48 +01:00
489da3de76
Github actions: fix names Github actions: Other fixes Github actions: Other fixes Github actions: Debugging Github actions: Debugging and remove pywbem 0.9 from pip install Github actions: Add PYTHONPATH env Github actions: Debugging Github actions: Debugging Github actions: Debugging Github actions: PIP modules dont seem to work Github actions: PIP modules dont seem to work Github actions: PIP modules dont seem to work
78 lines
2.2 KiB
YAML
78 lines
2.2 KiB
YAML
# @file python2check.yml
|
|
---
|
|
name: Python2 check
|
|
|
|
# Trigger the workflow on push or pull request
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
python2-pywbem08:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '2.7'
|
|
- name: Install pywbem from apt
|
|
run: |
|
|
sudo apt-get install -qq -yy python-pywbem
|
|
- name: Set environment PYTHONPATH
|
|
run: |
|
|
export PYTHONPATH=/opt/hostedtoolcache/Python
|
|
- name: Launch script with --help
|
|
run: |
|
|
./check_esxi_hardware.py --help
|
|
|
|
# Jobs with PIP installations are currently disabled.
|
|
# python2-pywbem09:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v1
|
|
# - uses: actions/setup-python@v1
|
|
# with:
|
|
# python-version: '2.7'
|
|
# - name: Install latest pywbem from pip
|
|
# run: |
|
|
# sudo apt-get install -qq -yy python-pip
|
|
# pip install pywbem==0.9.1
|
|
# - name: Set environment PYTHONPATH
|
|
# run: |
|
|
# export PYTHONPATH=/opt/hostedtoolcache/Python
|
|
# - name: Launch script with --help
|
|
# run: |
|
|
# ./check_esxi_hardware.py --help
|
|
# python2-pywbem012:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v1
|
|
# - uses: actions/setup-python@v1
|
|
# with:
|
|
# python-version: '2.7'
|
|
# - name: Install latest pywbem from pip
|
|
# run: |
|
|
# sudo apt-get install -qq -yy python-pip
|
|
# pip install pywbem==0.12.6
|
|
# - name: Set environment PYTHONPATH
|
|
# run: |
|
|
# export PYTHONPATH=/opt/hostedtoolcache/Python
|
|
# - name: Launch script with --help
|
|
# run: |
|
|
# ./check_esxi_hardware.py --help
|
|
# python2-pywbem014:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v1
|
|
# - uses: actions/setup-python@v1
|
|
# with:
|
|
# python-version: '2.7'
|
|
# - name: Install latest pywbem from pip
|
|
# run: |
|
|
# sudo apt-get install -qq -yy python-pip
|
|
# pip install pywbem==0.14.6
|
|
# - name: Set environment PYTHONPATH
|
|
# run: |
|
|
# export PYTHONPATH=/opt/hostedtoolcache/Python
|
|
# - name: Launch script with --help
|
|
# run: |
|
|
# ./check_esxi_hardware.py --help
|