Skip to content

Commit

Permalink
Adjust prerelease option. (#300)
Browse files Browse the repository at this point in the history
* Adjust prerelease option.
  • Loading branch information
szmyd authored Feb 2, 2024
1 parent 78f43dc commit 0b99aee
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,9 @@ jobs:

- name: Build Cache
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 Expand Up @@ -208,8 +209,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 +223,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 0b99aee

Please sign in to comment.