2021-03-16 15:16:31 +00:00
|
|
|
name: linux tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
- releases/**
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
- releases/**
|
|
|
|
jobs:
|
|
|
|
# Validate that the code can be run on all the Python versions
|
|
|
|
# supported by Spack
|
|
|
|
validate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
2022-04-13 21:32:23 +00:00
|
|
|
python-version: '3.10'
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Install Python Packages
|
|
|
|
run: |
|
|
|
|
pip install --upgrade pip
|
|
|
|
pip install --upgrade vermin
|
|
|
|
- name: vermin (Spack's Core)
|
2021-11-23 17:06:17 +00:00
|
|
|
run: vermin --backport argparse --violations --backport typing -t=2.7- -t=3.5- -vvv lib/spack/spack/ lib/spack/llnl/ bin/
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: vermin (Repositories)
|
2021-11-23 17:06:17 +00:00
|
|
|
run: vermin --backport argparse --violations --backport typing -t=2.7- -t=3.5- -vvv var/spack/repos
|
2021-03-16 15:16:31 +00:00
|
|
|
# Run style checks on the files that have been changed
|
|
|
|
style:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
2022-04-13 21:32:23 +00:00
|
|
|
python-version: '3.10'
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
2021-07-10 03:32:38 +00:00
|
|
|
pip install --upgrade pip six setuptools types-six
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Setup git configuration
|
|
|
|
run: |
|
|
|
|
# Need this for the git tests to succeed.
|
|
|
|
git --version
|
|
|
|
. .github/workflows/setup_git.sh
|
|
|
|
- name: Run style tests
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-style-tests
|
|
|
|
# Check which files have been updated by the PR
|
|
|
|
changes:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Set job outputs to values from filter step
|
|
|
|
outputs:
|
|
|
|
core: ${{ steps.filter.outputs.core }}
|
|
|
|
packages: ${{ steps.filter.outputs.packages }}
|
|
|
|
with_coverage: ${{ steps.coverage.outputs.with_coverage }}
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-03-16 17:27:41 +00:00
|
|
|
if: ${{ github.event_name == 'push' }}
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-03-16 15:16:31 +00:00
|
|
|
# For pull requests it's not necessary to checkout the code
|
2021-11-01 17:44:03 +00:00
|
|
|
- uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
|
2021-03-16 15:16:31 +00:00
|
|
|
id: filter
|
|
|
|
with:
|
|
|
|
# See https://github.com/dorny/paths-filter/issues/56 for the syntax used below
|
|
|
|
filters: |
|
|
|
|
core:
|
|
|
|
- './!(var/**)/**'
|
|
|
|
packages:
|
|
|
|
- 'var/**'
|
|
|
|
# Some links for easier reference:
|
|
|
|
#
|
|
|
|
# "github" context: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#github-context
|
|
|
|
# job outputs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idoutputs
|
|
|
|
# setting environment variables from earlier steps: https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
|
|
|
|
#
|
|
|
|
- id: coverage
|
2021-03-19 22:08:32 +00:00
|
|
|
# Run the subsequent jobs with coverage if core has been modified,
|
|
|
|
# regardless of whether this is a pull request or a push to a branch
|
2021-03-16 15:16:31 +00:00
|
|
|
run: |
|
|
|
|
echo Core changes: ${{ steps.filter.outputs.core }}
|
|
|
|
echo Event name: ${{ github.event_name }}
|
2021-03-19 22:08:32 +00:00
|
|
|
if [ "${{ steps.filter.outputs.core }}" == "true" ]
|
2021-03-16 15:16:31 +00:00
|
|
|
then
|
|
|
|
echo "::set-output name=with_coverage::true"
|
|
|
|
else
|
|
|
|
echo "::set-output name=with_coverage::false"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Run unit tests with different configurations on linux
|
|
|
|
unittests:
|
2021-10-27 17:02:52 +00:00
|
|
|
needs: [ validate, style, changes ]
|
2021-03-16 15:16:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-04-13 21:32:23 +00:00
|
|
|
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
|
2021-12-22 09:46:09 +00:00
|
|
|
concretizer: ['clingo']
|
|
|
|
include:
|
|
|
|
- python-version: 2.7
|
|
|
|
concretizer: original
|
|
|
|
- python-version: 3.6
|
|
|
|
concretizer: original
|
|
|
|
- python-version: 3.9
|
|
|
|
concretizer: original
|
2021-03-16 15:16:31 +00:00
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install System packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
# Needed for unit tests
|
2021-06-22 16:51:31 +00:00
|
|
|
sudo apt-get -y install \
|
2021-07-27 21:09:17 +00:00
|
|
|
coreutils cvs gfortran graphviz gnupg2 mercurial ninja-build \
|
2021-08-19 21:03:10 +00:00
|
|
|
patchelf cmake bison libbison-dev kcov
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
2022-01-27 19:35:05 +00:00
|
|
|
pip install --upgrade pip six setuptools pytest codecov "coverage[toml]<=6.2"
|
2021-07-27 21:09:17 +00:00
|
|
|
# ensure style checks are not skipped in unit tests for python >= 3.6
|
|
|
|
# note that true/false (i.e., 1/0) are opposite in conditions in python and bash
|
|
|
|
if python -c 'import sys; sys.exit(not sys.version_info >= (3, 6))'; then
|
|
|
|
pip install --upgrade flake8 isort>=4.3.5 mypy>=0.900 black
|
|
|
|
fi
|
2022-02-08 20:00:20 +00:00
|
|
|
- name: Pin pathlib for Python 2.7
|
|
|
|
if: ${{ matrix.python-version == 2.7 }}
|
|
|
|
run: |
|
|
|
|
pip install -U pathlib2==2.3.6
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Setup git configuration
|
|
|
|
run: |
|
|
|
|
# Need this for the git tests to succeed.
|
|
|
|
git --version
|
|
|
|
. .github/workflows/setup_git.sh
|
2021-08-18 18:14:02 +00:00
|
|
|
- name: Bootstrap clingo
|
2021-03-16 15:16:31 +00:00
|
|
|
if: ${{ matrix.concretizer == 'clingo' }}
|
2021-06-23 11:56:07 +00:00
|
|
|
env:
|
|
|
|
SPACK_PYTHON: python
|
2021-03-16 15:16:31 +00:00
|
|
|
run: |
|
|
|
|
. share/spack/setup-env.sh
|
2021-08-18 18:14:02 +00:00
|
|
|
spack bootstrap untrust spack-install
|
2021-03-16 15:16:31 +00:00
|
|
|
spack -v solve zlib
|
|
|
|
- name: Run unit tests (full suite with coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
env:
|
2021-06-23 11:56:07 +00:00
|
|
|
SPACK_PYTHON: python
|
2021-03-16 15:16:31 +00:00
|
|
|
COVERAGE: true
|
|
|
|
SPACK_TEST_SOLVER: ${{ matrix.concretizer }}
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-unit-tests
|
|
|
|
coverage combine
|
|
|
|
coverage xml
|
|
|
|
- name: Run unit tests (reduced suite without coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'false' }}
|
|
|
|
env:
|
2021-06-23 11:56:07 +00:00
|
|
|
SPACK_PYTHON: python
|
2021-03-16 15:16:31 +00:00
|
|
|
ONLY_PACKAGES: true
|
|
|
|
SPACK_TEST_SOLVER: ${{ matrix.concretizer }}
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-unit-tests
|
2022-04-06 04:08:22 +00:00
|
|
|
- uses: codecov/codecov-action@e3c560433a6cc60aec8812599b7844a7b4fa0d71 # @v2.1.0
|
2021-03-16 15:16:31 +00:00
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
with:
|
|
|
|
flags: unittests,linux,${{ matrix.concretizer }}
|
|
|
|
# Test shell integration
|
|
|
|
shell:
|
2021-10-27 17:02:52 +00:00
|
|
|
needs: [ validate, style, changes ]
|
2021-03-16 15:16:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
2022-04-13 21:32:23 +00:00
|
|
|
python-version: '3.10'
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Install System packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
# Needed for shell tests
|
2021-08-19 21:03:10 +00:00
|
|
|
sudo apt-get install -y coreutils kcov csh zsh tcsh fish dash bash
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
2022-01-27 19:35:05 +00:00
|
|
|
pip install --upgrade pip six setuptools pytest codecov coverage[toml]==6.2
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Setup git configuration
|
|
|
|
run: |
|
|
|
|
# Need this for the git tests to succeed.
|
|
|
|
git --version
|
|
|
|
. .github/workflows/setup_git.sh
|
|
|
|
- name: Run shell tests (without coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'false' }}
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-shell-tests
|
|
|
|
- name: Run shell tests (with coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
env:
|
|
|
|
COVERAGE: true
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-shell-tests
|
2022-04-06 04:08:22 +00:00
|
|
|
- uses: codecov/codecov-action@e3c560433a6cc60aec8812599b7844a7b4fa0d71 # @v2.1.0
|
2021-03-16 15:16:31 +00:00
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
with:
|
|
|
|
flags: shelltests,linux
|
|
|
|
|
2021-03-20 14:16:52 +00:00
|
|
|
# Test RHEL8 UBI with platform Python. This job is run
|
|
|
|
# only on PRs modifying core Spack
|
2021-03-16 15:16:31 +00:00
|
|
|
rhel8-platform-python:
|
2021-10-27 17:02:52 +00:00
|
|
|
needs: [ validate, style, changes ]
|
2021-03-16 15:16:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-03-20 14:16:52 +00:00
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
2021-03-16 15:16:31 +00:00
|
|
|
container: registry.access.redhat.com/ubi8/ubi
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
dnf install -y \
|
|
|
|
bzip2 curl file gcc-c++ gcc gcc-gfortran git gnupg2 gzip \
|
|
|
|
make patch tcl unzip which xz
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Setup repo and non-root user
|
|
|
|
run: |
|
|
|
|
git --version
|
|
|
|
git fetch --unshallow
|
|
|
|
. .github/workflows/setup_git.sh
|
|
|
|
useradd spack-test
|
|
|
|
chown -R spack-test .
|
|
|
|
- name: Run unit tests
|
|
|
|
shell: runuser -u spack-test -- bash {0}
|
|
|
|
run: |
|
|
|
|
source share/spack/setup-env.sh
|
2021-09-15 05:44:16 +00:00
|
|
|
spack -d solve zlib
|
2021-06-22 16:51:31 +00:00
|
|
|
spack unit-test -k 'not cvs and not svn and not hg' -x --verbose
|
2021-03-16 15:16:31 +00:00
|
|
|
# Test for the clingo based solver (using clingo-cffi)
|
|
|
|
clingo-cffi:
|
2021-10-27 17:02:52 +00:00
|
|
|
needs: [ validate, style, changes ]
|
2021-03-16 15:16:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-04-22 07:35:17 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-04-22 07:35:17 +00:00
|
|
|
with:
|
2022-04-13 21:32:23 +00:00
|
|
|
python-version: '3.10'
|
2021-04-22 07:35:17 +00:00
|
|
|
- name: Install System packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
# Needed for unit tests
|
2021-06-22 16:51:31 +00:00
|
|
|
sudo apt-get -y install \
|
|
|
|
coreutils cvs gfortran graphviz gnupg2 mercurial ninja-build \
|
2021-08-19 21:03:10 +00:00
|
|
|
patchelf kcov
|
2021-04-22 07:35:17 +00:00
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
2022-01-27 19:35:05 +00:00
|
|
|
pip install --upgrade pip six setuptools pytest codecov coverage[toml]==6.2 clingo
|
2021-04-22 07:35:17 +00:00
|
|
|
- name: Setup git configuration
|
|
|
|
run: |
|
|
|
|
# Need this for the git tests to succeed.
|
|
|
|
git --version
|
|
|
|
. .github/workflows/setup_git.sh
|
|
|
|
- name: Run unit tests (full suite with coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
env:
|
|
|
|
COVERAGE: true
|
|
|
|
SPACK_TEST_SOLVER: clingo
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-unit-tests
|
|
|
|
coverage combine
|
|
|
|
coverage xml
|
|
|
|
- name: Run unit tests (reduced suite without coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'false' }}
|
|
|
|
env:
|
|
|
|
ONLY_PACKAGES: true
|
|
|
|
SPACK_TEST_SOLVER: clingo
|
|
|
|
run: |
|
|
|
|
share/spack/qa/run-unit-tests
|
2022-04-06 04:08:22 +00:00
|
|
|
- uses: codecov/codecov-action@e3c560433a6cc60aec8812599b7844a7b4fa0d71 # @v2.1.0
|
2021-04-22 07:35:17 +00:00
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
with:
|
|
|
|
flags: unittests,linux,clingo
|
2021-03-16 15:16:31 +00:00
|
|
|
# Run unit tests on MacOS
|
|
|
|
build:
|
2021-10-27 17:02:52 +00:00
|
|
|
needs: [ validate, style, changes ]
|
2021-03-16 15:16:31 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: [3.8]
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-03-16 15:16:31 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
|
|
|
pip install --upgrade pip six setuptools
|
2022-01-27 19:35:05 +00:00
|
|
|
pip install --upgrade pytest codecov coverage[toml]==6.2
|
2021-03-16 15:16:31 +00:00
|
|
|
- name: Setup Homebrew packages
|
|
|
|
run: |
|
|
|
|
brew install dash fish gcc gnupg2 kcov
|
|
|
|
- name: Run unit tests
|
2021-08-27 09:10:03 +00:00
|
|
|
env:
|
|
|
|
SPACK_TEST_SOLVER: clingo
|
2021-03-16 15:16:31 +00:00
|
|
|
run: |
|
|
|
|
git --version
|
|
|
|
. .github/workflows/setup_git.sh
|
|
|
|
. share/spack/setup-env.sh
|
2021-08-27 09:10:03 +00:00
|
|
|
$(which spack) bootstrap untrust spack-install
|
|
|
|
$(which spack) solve zlib
|
2021-03-16 15:16:31 +00:00
|
|
|
if [ "${{ needs.changes.outputs.with_coverage }}" == "true" ]
|
|
|
|
then
|
|
|
|
coverage run $(which spack) unit-test -x
|
|
|
|
coverage combine
|
|
|
|
coverage xml
|
2021-07-24 11:23:56 +00:00
|
|
|
# Delete the symlink going from ./lib/spack/docs/_spack_root back to
|
|
|
|
# the initial directory, since it causes ELOOP errors with codecov/actions@2
|
|
|
|
rm lib/spack/docs/_spack_root
|
2021-03-16 15:16:31 +00:00
|
|
|
else
|
|
|
|
echo "ONLY PACKAGE RECIPES CHANGED [skipping coverage]"
|
2021-03-19 18:04:53 +00:00
|
|
|
$(which spack) unit-test -x -m "not maybeslow" -k "package_sanity"
|
2021-03-16 15:16:31 +00:00
|
|
|
fi
|
2022-04-06 04:08:22 +00:00
|
|
|
- uses: codecov/codecov-action@e3c560433a6cc60aec8812599b7844a7b4fa0d71 # @v2.1.0
|
2021-03-16 15:16:31 +00:00
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
with:
|
2021-07-24 11:23:56 +00:00
|
|
|
files: ./coverage.xml
|
2021-03-16 15:16:31 +00:00
|
|
|
flags: unittests,macos
|
2021-12-13 18:44:15 +00:00
|
|
|
|
|
|
|
# Run audits on all the packages in the built-in repository
|
|
|
|
package-audits:
|
|
|
|
needs: [ validate, style, changes ]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 13:43:49 +00:00
|
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
2022-04-14 08:47:01 +00:00
|
|
|
- uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 # @v2
|
2021-12-13 18:44:15 +00:00
|
|
|
with:
|
2022-04-13 21:32:23 +00:00
|
|
|
python-version: '3.10'
|
2021-12-13 18:44:15 +00:00
|
|
|
- name: Install Python packages
|
|
|
|
run: |
|
2022-01-27 19:35:05 +00:00
|
|
|
pip install --upgrade pip six setuptools pytest codecov coverage[toml]==6.2
|
2021-12-13 18:44:15 +00:00
|
|
|
- name: Package audits (with coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
run: |
|
|
|
|
. share/spack/setup-env.sh
|
|
|
|
coverage run $(which spack) audit packages
|
|
|
|
coverage combine
|
|
|
|
coverage xml
|
|
|
|
- name: Package audits (wwithout coverage)
|
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'false' }}
|
|
|
|
run: |
|
|
|
|
. share/spack/setup-env.sh
|
|
|
|
$(which spack) audit packages
|
2022-04-06 04:08:22 +00:00
|
|
|
- uses: codecov/codecov-action@e3c560433a6cc60aec8812599b7844a7b4fa0d71 # @v2.1.0
|
2021-12-13 18:44:15 +00:00
|
|
|
if: ${{ needs.changes.outputs.with_coverage == 'true' }}
|
|
|
|
with:
|
|
|
|
flags: unittests,linux,audits
|