Additional onedir
related fixes
#1128
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
name: CI | ||
on: [push, pull_request] | ||
jobs: | ||
Pre-Commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Set Cache Key | ||
run: echo "PY=$(python --version --version | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pre-commit | ||
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}|${{ hashFiles('.pre-commit-hooks/*') }} | ||
- name: Install Dependencies | ||
run: | | ||
python -m pip install pre-commit | ||
pre-commit install --install-hooks | ||
- name: Run Pre-Commit | ||
run: | | ||
pre-commit run --show-diff-on-failure --color=always --all-files | ||
Docs: | ||
runs-on: ubuntu-20.04 | ||
needs: Pre-Commit | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python 3.9 For Nox | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Install Nox | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install nox | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Doc Requirements | ||
run: | | ||
nox --force-color -e docs --install-only | ||
- name: Build Docs | ||
env: | ||
SKIP_REQUIREMENTS_INSTALL: YES | ||
run: | | ||
nox --force-color -e docs | ||
PyLint: | ||
runs-on: ubuntu-latest | ||
needs: Pre-Commit | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.9 For Nox | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Install Nox | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install nox | ||
- name: Install Lint Requirements | ||
run: | | ||
nox --force-color -e lint --install-only | ||
- name: Build Docs | ||
env: | ||
SKIP_REQUIREMENTS_INSTALL: YES | ||
run: | | ||
nox --force-color -e lint | ||
Linux-System-Service: | ||
runs-on: ubuntu-20.04 | ||
needs: Pre-Commit | ||
timeout-minutes: 25 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
pytest-version: | ||
- "7.0.0" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install Nox | ||
run: | | ||
sudo -E apt-get update | ||
sudo -E apt-get install -y python3-setuptools python-is-python3 | ||
sudo -E python3 -m pip install --upgrade pip | ||
sudo -E python3 -m pip install 'nox<2022.8.7' | ||
sudo mv /usr/bin/pip /usr/bin/pip2 | ||
sudo ln -sf /usr/bin/pip3 /usr/bin/pip | ||
- name: Install Salt | ||
run: | | ||
curl -L https://bootstrap.saltstack.com | sudo sh -s -- -M -X -x python3 old-stable 3005 | ||
sudo apt-get install -y salt-api salt-ssh salt-syndic salt-cloud python3-pip | ||
for service in $(sudo systemctl list-unit-files | grep salt | grep -v @ | awk '{ print $1 }'); do sudo systemctl stop $service; done | ||
run: | | ||
sudo -E nox --force-color -e tests --no-venv --install-only | ||
- name: Test | ||
id: run-tests | ||
env: | ||
SKIP_REQUIREMENTS_INSTALL: YES | ||
run: | | ||
sudo -E nox --force-color -e tests --no-venv -- -vv tests/ | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: artifacts/ | ||
fail_ci_if_error: false | ||
files: coverage-project.xml | ||
flags: src,${{ runner.os }},salt-${{ matrix.salt-version }},py${{ matrix.python-version }},pytest-${{ matrix.pytest-version }} | ||
name: project-${{ runner.os }}-Salt-${{ matrix.salt-version }}-Py${{ matrix.python-version}}-Pytest${{ matrix.pytest-version }} | ||
verbose: true | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: artifacts/ | ||
env_vars: PYTHON,SALT,TESTSUITE,SOURCE | ||
fail_ci_if_error: false | ||
files: coverage-tests.xml | ||
flags: tests,${{ runner.os }},salt-${{ matrix.salt-version }},py${{ matrix.python-version }},pytest-${{ matrix.pytest-version }} | ||
name: tests-${{ runner.os }}-Salt-${{ matrix.salt-version }}-Py${{ matrix.python-version}}-Pytest${{ matrix.pytest-version }} | ||
verbose: true | ||
- name: Upload Logs | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: runtests-${{ steps.codecov.outputs.report-name }}-system.log | ||
path: artifacts/runtests-*.log | ||
Windows: | ||
runs-on: windows-latest | ||
needs: Pre-Commit | ||
timeout-minutes: 40 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 9 | ||
matrix: | ||
python-version: | ||
- "3.7" | ||
- "3.8" | ||
salt-version: | ||
- "3005.0" | ||
pytest-version: | ||
- "7.0.0" | ||
- "7.1.0" | ||
exclude: | ||
- {"python-version": "3.7", "pytest-version": "7.0.0", "salt-version": "3005.0"} | ||
- {"python-version": "3.7", "pytest-version": "7.1.0", "salt-version": "3005.0"} | ||
- {"python-version": "3.8", "pytest-version": "7.0.0", "salt-version": "3005.0"} | ||
- {"python-version": "3.8", "pytest-version": "7.1.0", "salt-version": "3005.0"} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Nox | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install nox | ||
- name: Install Test Requirements | ||
shell: bash | ||
env: | ||
SALT_REQUIREMENT: salt~=${{ matrix.salt-version }} | ||
PYTEST_VERSION_REQUIREMENT: pytest~=${{ matrix.pytest-version }} | ||
run: | | ||
export PATH="/C/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64;$PATH" | ||
nox --force-color -e tests-${{ matrix.python-version }} --install-only | ||
- name: Test | ||
id: run-tests | ||
shell: bash | ||
env: | ||
SALT_REQUIREMENT: salt~=${{ matrix.salt-version }} | ||
PYTEST_VERSION_REQUIREMENT: pytest~=${{ matrix.pytest-version }} | ||
SKIP_REQUIREMENTS_INSTALL: YES | ||
run: | | ||
export PATH="/C/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64;$PATH" | ||
nox --force-color -e tests-${{ matrix.python-version }} -- -vv tests/ | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: artifacts/ | ||
fail_ci_if_error: false | ||
files: coverage-project.xml | ||
flags: src,${{ runner.os }},salt-${{ matrix.salt-version }},py${{ matrix.python-version }},pytest-${{ matrix.pytest-version }} | ||
name: project-${{ runner.os }}-Salt-${{ matrix.salt-version }}-Py${{ matrix.python-version}}-Pytest${{ matrix.pytest-version }} | ||
verbose: true | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: artifacts/ | ||
env_vars: PYTHON,SALT,TESTSUITE,SOURCE | ||
fail_ci_if_error: false | ||
files: coverage-tests.xml | ||
flags: tests,${{ runner.os }},salt-${{ matrix.salt-version }},py${{ matrix.python-version }},pytest-${{ matrix.pytest-version }} | ||
name: tests-${{ runner.os }}-Salt-${{ matrix.salt-version }}-Py${{ matrix.python-version}}-Pytest${{ matrix.pytest-version }} | ||
verbose: true | ||
- name: Upload Logs | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: runtests-${{ steps.codecov.outputs.report-name }}.log | ||
path: artifacts/runtests-*.log | ||
macOS: | ||
runs-on: macOS-latest | ||
needs: Pre-Commit | ||
timeout-minutes: 60 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 9 | ||
matrix: | ||
python-version: | ||
- "3.7" | ||
- "3.9" | ||
salt-version: | ||
- "3005.0" | ||
pytest-version: | ||
- "7.0.0" | ||
- "7.1.0" | ||
exclude: | ||
- {"python-version": "3.7", "pytest-version": "7.0.0", "salt-version": "3005.0"} | ||
- {"python-version": "3.7", "pytest-version": "7.1.0", "salt-version": "3005.0"} | ||
- {"python-version": "3.9", "pytest-version": "7.0.0", "salt-version": "3005.0"} | ||
- {"python-version": "3.9", "pytest-version": "7.1.0", "salt-version": "3005.0"} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Nox | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install nox | ||
- name: Install Test Requirements | ||
env: | ||
SALT_REQUIREMENT: salt~=${{ matrix.salt-version }} | ||
PYTEST_VERSION_REQUIREMENT: pytest~=${{ matrix.pytest-version }} | ||
run: | | ||
nox --force-color -e tests-${{ matrix.python-version }} --install-only | ||
- name: Test | ||
id: run-tests | ||
env: | ||
SALT_REQUIREMENT: salt~=${{ matrix.salt-version }} | ||
PYTEST_VERSION_REQUIREMENT: pytest~=${{ matrix.pytest-version }} | ||
SKIP_REQUIREMENTS_INSTALL: YES | ||
run: | | ||
nox --force-color -e tests-${{ matrix.python-version }} -- -vv tests/ | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: artifacts/ | ||
fail_ci_if_error: false | ||
files: coverage-project.xml | ||
flags: src,${{ runner.os }},salt-${{ matrix.salt-version }},py${{ matrix.python-version }},pytest-${{ matrix.pytest-version }} | ||
name: project-${{ runner.os }}-Salt-${{ matrix.salt-version }}-Py${{ matrix.python-version}}-Pytest${{ matrix.pytest-version }} | ||
verbose: true | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: artifacts/ | ||
env_vars: PYTHON,SALT,TESTSUITE,SOURCE | ||
fail_ci_if_error: false | ||
files: coverage-tests.xml | ||
flags: tests,${{ runner.os }},salt-${{ matrix.salt-version }},py${{ matrix.python-version }},pytest-${{ matrix.pytest-version }} | ||
name: tests-${{ runner.os }}-Salt-${{ matrix.salt-version }}-Py${{ matrix.python-version}}-Pytest${{ matrix.pytest-version }} | ||
verbose: true | ||
- name: Upload Logs | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: runtests-${{ steps.codecov.outputs.report-name }}.log | ||
path: artifacts/runtests-*.log | ||
Linux: | ||
runs-on: ubuntu-20.04 | ||
needs: Pre-Commit | ||
timeout-minutes: 25 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 16 | ||
matrix: | ||
python-version: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
salt-version: | ||
- "3005.0" | ||
pytest-version: | ||
- "7.0.0" | ||
- "7.1.0" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Nox | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install nox | ||
- name: Install Test Requirements | ||
env: | ||
SALT_REQUIREMENT: salt~=${{ matrix.salt-version }} | ||
PYTEST_VERSION_REQUIREMENT: pytest~=${{ matrix.pytest-version }} | ||
run: | | ||
nox --force-color -e tests-${{ matrix.python-version }} --install-only | ||
- name: Test | ||
id: run-tests | ||
env: | ||
SALT_REQUIREMENT: salt~=${{ matrix.salt-version }} | ||
PYTEST_VERSION_REQUIREMENT: pytest~=${{ matrix.pytest-version }} | ||
SKIP_REQUIREMENTS_INSTALL: YES | ||
run: | | ||
nox --force-color -e tests-${{ matrix.python-version }} -- -vv --sys-stats tests/ | ||
- name: Upload Logs | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: runtests-${{ steps.codecov.outputs.report-name }}.log | ||
path: artifacts/runtests-*.log | ||
Build: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- Docs | ||
- PyLint | ||
- Linux | ||
- Windows | ||
- macOS | ||
- Linux-System-Service | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Install Nox | ||
run: | | ||
python -m pip install nox | ||
- name: Build a binary wheel and a source tarball | ||
run: | | ||
nox -e build | ||
- name: Publish distribution 📦 to Test PyPI | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
print_hash: true |