diff --git a/doc/changelog.d/492.miscellaneous.md b/doc/changelog.d/492.miscellaneous.md new file mode 100644 index 00000000..e673779e --- /dev/null +++ b/doc/changelog.d/492.miscellaneous.md @@ -0,0 +1 @@ +Rename `smoke-tests` into `build-wheelhouse` in the common `ci_cd.yml` template \ No newline at end of file diff --git a/src/ansys/templates/python/common/{{cookiecutter.__project_name_slug}}/.github/workflows/ci_cd.yml b/src/ansys/templates/python/common/{{cookiecutter.__project_name_slug}}/.github/workflows/ci_cd.yml index a5410e74..cc1782f7 100644 --- a/src/ansys/templates/python/common/{{cookiecutter.__project_name_slug}}/.github/workflows/ci_cd.yml +++ b/src/ansys/templates/python/common/{{cookiecutter.__project_name_slug}}/.github/workflows/ci_cd.yml @@ -49,8 +49,8 @@ jobs: with: token: {{ '${{ secrets.GITHUB_TOKEN }}' }} - smoke-tests: - name: "Build and Smoke tests" + build-wheelhouse: + name: "Build wheelhouse" runs-on: {{ '${{ matrix.os }}' }} needs: [code-style] strategy: @@ -75,7 +75,7 @@ jobs: tests: name: "Tests" runs-on: {{ '${{ matrix.os }}' }} - needs: [smoke-tests] + needs: [build-wheelhouse] strategy: matrix: os: [ubuntu-latest, windows-latest] @@ -225,7 +225,7 @@ jobs: release-github: name: "Release to GitHub" runs-on: ubuntu-latest - needs: [doc-build, release-pypi-private] + needs: [doc-build, build-wheelhouse, release-pypi-private] steps: - name: "Release to GitHub" if: github.event_name == 'push' && contains(github.ref, 'refs/tags')