Set LINUX_PORTABLE to OFF to create valid .deb file

This commit is contained in:
WarmUpTill 2022-08-14 15:11:49 +02:00 committed by WarmUpTill
parent 7fbfb7806b
commit 9e8e1a6e4d
2 changed files with 12 additions and 2 deletions

View File

@ -246,7 +246,10 @@ Usage: %B${functrace[1]%:*}%b <option> [<options>]
;;
linux-*)
if (( ${+CI} )) {
cmake_args+=(-DCMAKE_INSTALL_PREFIX=/usr)
cmake_args+=(
-DCMAKE_INSTALL_PREFIX=/usr
-DLINUX_PORTABLE=OFF
)
}
num_procs=$(( $(nproc) + 1 ))
;;

View File

@ -236,6 +236,13 @@ jobs:
target: ${{ matrix.arch }}
config: RelWithDebInfo
- name: Upload Build Artifact
if: ${{ success() }}
uses: actions/upload-artifact@v3
with:
name: ${{ env.PLUGIN_NAME }}-linux-${{ matrix.arch }}-${{ steps.setup.outputs.commitHash }}
path: ${{ github.workspace }}/plugin/release/*
- name: Package Plugin
uses: ./plugin/.github/actions/package-plugin
with:
@ -243,7 +250,7 @@ jobs:
target: ${{ matrix.arch }}
config: RelWithDebInfo
- name: Upload Build Artifact
- name: Upload Package Artifact
if: ${{ success() }}
uses: actions/upload-artifact@v3
with: