diff options
author | Alec Scott <hi@alecbcs.com> | 2024-07-09 04:46:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-09 04:46:09 +0200 |
commit | 7c5fbee327f7735e1ac5a7cf1a55a292428f0690 (patch) | |
tree | d6ac8920ce70324b5b7cef0dcd51ceed73c0f7b0 /.github/workflows/valid-style.yml | |
parent | b19c4cdcf66beb1c2386bec64e8071bc6d559ab1 (diff) | |
download | spack-7c5fbee327f7735e1ac5a7cf1a55a292428f0690.tar.gz spack-7c5fbee327f7735e1ac5a7cf1a55a292428f0690.tar.bz2 spack-7c5fbee327f7735e1ac5a7cf1a55a292428f0690.tar.xz spack-7c5fbee327f7735e1ac5a7cf1a55a292428f0690.zip |
Improve organization of CI workflow scripts and pip requirements (#45037)
Diffstat (limited to '.github/workflows/valid-style.yml')
-rw-r--r-- | .github/workflows/valid-style.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/valid-style.yml b/.github/workflows/valid-style.yml index d4c600ac2f..05faab0a8d 100644 --- a/.github/workflows/valid-style.yml +++ b/.github/workflows/valid-style.yml @@ -26,7 +26,7 @@ jobs: - name: Install Python Packages run: | pip install --upgrade pip setuptools - pip install -r .github/workflows/style/requirements.txt + pip install -r .github/workflows/requirements/style/requirements.txt - name: vermin (Spack's Core) run: vermin --backport importlib --backport argparse --violations --backport typing -t=3.6- -vvv lib/spack/spack/ lib/spack/llnl/ bin/ - name: vermin (Repositories) @@ -45,12 +45,12 @@ jobs: - name: Install Python packages run: | pip install --upgrade pip setuptools - pip install -r .github/workflows/style/requirements.txt + pip install -r .github/workflows/requirements/style/requirements.txt - name: Setup git configuration run: | # Need this for the git tests to succeed. git --version - . .github/workflows/setup_git.sh + . .github/workflows/bin/setup_git.sh - name: Run style tests run: | share/spack/qa/run-style-tests @@ -76,7 +76,7 @@ jobs: git --version git config --global --add safe.directory /__w/spack/spack git fetch --unshallow - . .github/workflows/setup_git.sh + . .github/workflows/bin/setup_git.sh useradd spack-test chown -R spack-test . - name: Bootstrap Spack development environment |