2022-09-07 18:12:57 +00:00
|
|
|
name: audit
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
with_coverage:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
python_version:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: audit-${{inputs.python_version}}-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Run audits on all the packages in the built-in repository
|
|
|
|
package-audits:
|
2023-07-13 10:47:47 +00:00
|
|
|
runs-on: ${{ matrix.operating_system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating_system: ["ubuntu-latest", "macos-latest"]
|
2022-09-07 18:12:57 +00:00
|
|
|
steps:
|
2024-03-27 08:26:12 +00:00
|
|
|
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
|
2024-03-27 09:49:45 +00:00
|
|
|
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
|
2022-09-07 18:12:57 +00:00
|
|
|
with:
|
2023-08-03 21:21:39 +00:00
|
|
|
python-version: ${{inputs.python_version}}
|
2022-09-07 18:12:57 +00:00
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
2023-05-02 17:28:24 +00:00
|
|
|
pip install --upgrade pip setuptools pytest coverage[toml]
|
2022-09-07 18:12:57 +00:00
|
|
|
- name: Package audits (with coverage)
|
|
|
|
if: ${{ inputs.with_coverage == 'true' }}
|
|
|
|
run: |
|
|
|
|
. share/spack/setup-env.sh
|
|
|
|
coverage run $(which spack) audit packages
|
2023-09-29 08:24:42 +00:00
|
|
|
coverage run $(which spack) audit externals
|
2022-09-07 18:12:57 +00:00
|
|
|
coverage combine
|
|
|
|
coverage xml
|
|
|
|
- name: Package audits (without coverage)
|
|
|
|
if: ${{ inputs.with_coverage == 'false' }}
|
|
|
|
run: |
|
|
|
|
. share/spack/setup-env.sh
|
|
|
|
$(which spack) audit packages
|
2023-09-29 08:24:42 +00:00
|
|
|
$(which spack) audit externals
|
2024-04-15 15:34:31 +00:00
|
|
|
- uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed
|
2022-09-07 18:12:57 +00:00
|
|
|
if: ${{ inputs.with_coverage == 'true' }}
|
|
|
|
with:
|
2023-07-13 10:47:47 +00:00
|
|
|
flags: unittests,audits
|
2024-03-26 21:49:26 +00:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
2024-03-27 08:15:34 +00:00
|
|
|
verbose: true
|