From e588aec2bf23a328af60897e615f5cc7d7ae7651 Mon Sep 17 00:00:00 2001 From: Hari Kadayam Date: Fri, 23 May 2025 07:42:25 -0700 Subject: [PATCH] Remove coverage build during pr build --- .github/workflows/build_dependencies.yml | 2 +- .github/workflows/pr_build.yml | 4 +--- conanfile.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index a4b568ac..7b8e07e3 100644 --- a/.github/workflows/build_dependencies.yml +++ b/.github/workflows/build_dependencies.yml @@ -135,7 +135,7 @@ jobs: - name: Create and Test Package run: | sanitize=$([[ "${{ inputs.tooling }}" == "Sanitize" ]] && echo "True" || echo "False") - skip_test=$([[ "${{ inputs.testing }}" == "True" || ${{ inputs.testing }} == "true" ]] && echo "false" || echo "true") + skip_test=$([[ "${{ inputs.testing }}" == "True" || ${{ inputs.testing }} == "true" ]] && echo "False" || echo "True") conan create \ -o "sisl/*:prerelease=${{ inputs.prerelease }}" \ -o "sisl/*:malloc_impl=${{ inputs.malloc-impl }}" \ diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index 4dddcfc2..c6af93fc 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -16,7 +16,7 @@ jobs: build-type: ["Debug", "Release"] malloc-impl: ["libc", "tcmalloc"] prerelease: ["True", "False"] - tooling: ["Sanitize", "Coverage", "None"] + tooling: ["Sanitize", "None"] exclude: - build-type: Debug prerelease: "False" @@ -30,8 +30,6 @@ jobs: malloc-impl: libc - build-type: Release tooling: Sanitize - - build-type: Release - tooling: Coverage uses: ./.github/workflows/build_dependencies.yml with: platform: ${{ matrix.platform }} diff --git a/conanfile.py b/conanfile.py index ef44a839..229c296e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -9,7 +9,7 @@ class SISLConan(ConanFile): name = "sisl" - version = "13.3.2" + version = "13.3.3" homepage = "https://github.com/hkadayam/sisl" description = "Library for fast data structures, utilities"