mirror of
https://github.com/Napsty/check_esxi_hardware.git
synced 2024-11-22 02:13:46 +01:00
Github actions: pywbem
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
This commit is contained in:
parent
bcf607b2cb
commit
489da3de76
63
.github/workflows/python2check.yml
vendored
63
.github/workflows/python2check.yml
vendored
@ -6,13 +6,72 @@ name: Python2 check
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
python2-help:
|
python2-pywbem08:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-python@v1
|
- uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
python-version: '2.7'
|
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
|
- name: Launch script with --help
|
||||||
run: |
|
run: |
|
||||||
./check_esxi_hardware.py --help
|
./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
|
||||||
|
112
.github/workflows/python3check.yml
vendored
112
.github/workflows/python3check.yml
vendored
@ -6,13 +6,109 @@ name: Python3 check
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
python3-help:
|
simple-output:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- name: Simple hello world
|
||||||
- uses: actions/setup-python@v1
|
run: echo "Hello World"
|
||||||
with:
|
# python3-pywbem-latest:
|
||||||
python-version: '3.x'
|
# runs-on: ubuntu-latest
|
||||||
- name: Launch script with --help
|
# steps:
|
||||||
run: |
|
# - uses: actions/checkout@v1
|
||||||
./check_esxi_hardware.py --help
|
# - uses: actions/setup-python@v1
|
||||||
|
# with:
|
||||||
|
# python-version: '3.8'
|
||||||
|
# - name: Install latest pywbem from pip
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install -qq -yy python3-pip
|
||||||
|
# pip3 install pywbem
|
||||||
|
# - name: Set environment PYTHONPATH
|
||||||
|
# run: |
|
||||||
|
# export PYTHONPATH=/opt/hostedtoolcache/Python/3.8.0/x64/lib/python3.8/site-packages
|
||||||
|
# - name: Verify python sys.path
|
||||||
|
# run: (echo "import sys"; echo "print(', '.join(sys.path))") | python
|
||||||
|
# - name: Launch script with --help
|
||||||
|
# run: |
|
||||||
|
# ./check_esxi_hardware.py --help
|
||||||
|
# python3-pywbem-08:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v1
|
||||||
|
# - uses: actions/setup-python@v1
|
||||||
|
# with:
|
||||||
|
# python-version: '3.x'
|
||||||
|
# - name: Install latest pywbem from pip
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install -qq -yy python3-pip
|
||||||
|
# pip3 install pywbem==0.8.4
|
||||||
|
# - name: Set environment PYTHONPATH
|
||||||
|
# run: |
|
||||||
|
# export PYTHONPATH=/opt/hostedtoolcache/Python
|
||||||
|
# - name: Launch script with --help
|
||||||
|
# run: |
|
||||||
|
# ./check_esxi_hardware.py --help
|
||||||
|
# python3-pywbem-012:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v1
|
||||||
|
# - uses: actions/setup-python@v1
|
||||||
|
# with:
|
||||||
|
# python-version: '3.x'
|
||||||
|
# - name: Install latest pywbem from pip
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install -qq -yy python3-pip
|
||||||
|
# pip3 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
|
||||||
|
# python3-pywbem-013:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v1
|
||||||
|
# - uses: actions/setup-python@v1
|
||||||
|
# with:
|
||||||
|
# python-version: '3.x'
|
||||||
|
# - name: Install latest pywbem from pip
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install -qq -yy python3-pip
|
||||||
|
# pip3 install pywbem==0.13.1
|
||||||
|
# - name: Set environment PYTHONPATH
|
||||||
|
# run: |
|
||||||
|
# export PYTHONPATH=/opt/hostedtoolcache/Python
|
||||||
|
# - name: Launch script with --help
|
||||||
|
# run: |
|
||||||
|
# ./check_esxi_hardware.py --help
|
||||||
|
# python3-pywbem-014:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v1
|
||||||
|
# - uses: actions/setup-python@v1
|
||||||
|
# with:
|
||||||
|
# python-version: '3.x'
|
||||||
|
# - name: Install latest pywbem from pip
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install -qq -yy python3-pip
|
||||||
|
# pip3 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
|
||||||
|
# find-pywbem:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v1
|
||||||
|
# - uses: actions/setup-python@v1
|
||||||
|
# with:
|
||||||
|
# python-version: '3.x'
|
||||||
|
# - name: Install latest pywbem from pip
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install -qq -yy python-pip
|
||||||
|
# pip install pywbem
|
||||||
|
# - name: Find pywbem module
|
||||||
|
# run: |
|
||||||
|
# find / -name 'pywbem-*'
|
||||||
|
Loading…
Reference in New Issue
Block a user