Skip to content

Commit

Permalink
Adjust prerelease option.
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Feb 1, 2024
1 parent 78f43dc commit 396589a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,9 @@ jobs:
- name: Create and Test Package
run: |
sanitize=$([[ "${{ inputs.tooling }}" == "Sanitize" ]] && echo "True" || echo "False")
pre=$([[ "${{ inputs.build-type }}" != "Debug" ]] && echo "-o sisl:prerelease=${{ inputs.prerelease }}" || echo "")
conan create \
-o sisl:prerelease=${{ inputs.prerelease }} \
${pre} \
-o sisl:malloc_impl=${{ inputs.malloc-impl }} \
-o iomgr:testing=off \
-o nuraft_mesg:testing=False \
Expand All @@ -221,8 +222,9 @@ jobs:

- name: Code Coverage Run
run: |
pre=$([[ "${{ inputs.build-type }}" != "Debug" ]] && echo "-o sisl:prerelease=${{ inputs.prerelease }}" || echo "")
conan install \
-o sisl:prerelease=${{ inputs.prerelease }} \
${pre} \
-o sisl:malloc_impl=${{ inputs.malloc-impl }} \
-o iomgr:testing=off \
-o nuraft_mesg:testing=False \
Expand Down

0 comments on commit 396589a

Please sign in to comment.