Skip to content

Refactor spack-manager to be a plugin #1231

Refactor spack-manager to be a plugin

Refactor spack-manager to be a plugin #1231

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Spack-Manager Tests
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Checkout Spack
uses: actions/checkout@v3
with:
repository: spack/spack
path: spack
- name: Setup Spack
run: echo "$PWD/spack/bin" >> "$GITHUB_PATH"
- name: Install extension
run: spack config add config:extensions:[${GITHUB_WORKSPACE}]
- name: Run unit tests
run: spack unit-test --extension manager
style-checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Checkout Spack
uses: actions/checkout@v3
with:
repository: spack/spack
path: spack
- name: Setup Spack
run: echo "$PWD/spack/bin" >> "$GITHUB_PATH"
- name: Install dependencies
run: |
cp "spack/.github/workflow/style/requirements.txt" "$PWD"
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install extension
run: spack config add config:extensions:[${GITHUB_WORKSPACE}]
- name: Spack Style Manager
run: spack style ${GITHUB_WORKSPACE}/manager
- name: Spack Style Tests
run: spack style ${GITHUB_WORKSPACE}/tests