Remove python2 and pywbem 0.7.0 compatibility #53
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
# @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 |