Skip to content

Commit

Permalink
Revert "ci: UHD make: tolerate warning deprecated-declarations"
Browse files Browse the repository at this point in the history
This reverts commit 5e4abd5.

After fixing the deprecated usage, this is no longer necessary.
  • Loading branch information
mbr0wn authored and joergho committed Apr 2, 2024
1 parent ea58616 commit 79335eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/templates/steps-build-uhd-make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ steps:
fi
if [[ "${{ parameters.uhdAllowWarnings }}" = "False" ]]; then
echo "Warnings not allowed for this build."
export CXXFLAGS="-Werror -Wno-error=maybe-uninitialized -Wno-error=deprecated-declarations $CXXFLAGS"
export CXXFLAGS="-Werror -Wno-error=maybe-uninitialized $CXXFLAGS"
fi
export CXXFLAGS="${{ parameters.uhdCxxFlags }} $CXXFLAGS"
if [[ "${{ parameters.uhdCustomBoostPackage }}" = "True" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .ci/templates/steps-build-uhd-ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
cd ${{ parameters.uhdBuildDir }}
if [[ "${{ parameters.uhdAllowWarnings }}" = "False" ]]; then
echo "Warnings not allowed for this build."
export CXXFLAGS="-Werror -Wno-error=maybe-uninitialized -Wno-error=deprecated-declarations $CXXFLAGS"
export CXXFLAGS="-Werror -Wno-error=maybe-uninitialized $CXXFLAGS"
fi
export CXXFLAGS="${{ parameters.uhdCxxFlags }} $CXXFLAGS"
cmake -G Ninja ${{ parameters.uhdSrcDir }}/host
Expand Down

0 comments on commit 79335eb

Please sign in to comment.