[PATCH] .github/actions/build-userspace: drop duplicated make install, fix comment
Stephen Smalley <[email protected]>
| Newsgroups | org.kernel.vger.selinux |
|---|---|
| Message-ID | <[email protected]> |
Fix a typo in a comment and drop a duplicated make install from the build userspace GitHub action. Signed-off-by: Stephen Smalley <[email protected]> --- .github/actions/build-userspace/action.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/actions/build-userspace/action.yml b/.github/actions/build-userspace/action.yml index 03f9e0a2..941c1345 100644 --- a/.github/actions/build-userspace/action.yml +++ b/.github/actions/build-userspace/action.yml @@ -96,7 +96,7 @@ runs: # Test that overriding CFLAGS, LDFLAGS and other variables works fine EXPLICIT_MAKE_VARS="CFLAGS=-I$DESTDIR/usr/include LDFLAGS=-L$DESTDIR/usr/lib LDLIBS= CPPFLAGS=" elif [ "${{ inputs.other }}" = "test-debug" ] ; then - # Test hat debug build works fine + # Test that debug build works fine EXPLICIT_MAKE_VARS="DEBUG=1" elif [ "${{ inputs.other }}" = "sanitizers" ] ; then sanitizers='-fsanitize=address,undefined' @@ -144,9 +144,6 @@ runs: - name: Build SELinux userspace shell: bash run: | - echo "::group::make install" - eval make -j$(nproc) install $EXPLICIT_MAKE_VARS -k - echo "::endgroup::" echo "::group::make install" eval make -j$(nproc) install $EXPLICIT_MAKE_VARS -k echo "::endgroup::" -- 2.55.0