Skip to content

Commit

Permalink
Skip gtest when copying licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
filip-szweda committed Oct 23, 2023
1 parent a92292e commit 623a8f9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-test-and-publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ jobs:
requirements="$(cat conanfile.txt | tr "\n" " " | grep -Po "\[requires\] \K[^\[]+")"
for requirement in $requirements; do
if printf "%s" "${requirement}" | grep -q "gtest/"; then
continue
fi
requirementPath=${{ env.ARTIFACT_PATH }}/thirdparty/${requirement}
mkdir -p "${requirementPath}"
Expand Down

0 comments on commit 623a8f9

Please sign in to comment.