From e9992ac4e67ba6176faf7ad230f419c18a40ddb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=82osz=20Linkiewicz?= Date: Mon, 3 Mar 2025 14:58:39 +0100 Subject: [PATCH 1/3] FIX: Coverity build issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FIX: Coverity build issues Signed-off-by: Miłosz Linkiewicz --- .github/workflows/build-baremetal-coverity.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-baremetal-coverity.yml b/.github/workflows/build-baremetal-coverity.yml index 85f79ba..a84d1c6 100644 --- a/.github/workflows/build-baremetal-coverity.yml +++ b/.github/workflows/build-baremetal-coverity.yml @@ -85,7 +85,12 @@ jobs: token: ${{ secrets.COVERITY_SCAN_TOKEN }} build_language: 'cxx' build_platform: 'linux64' - command: ${{ github.workspace }}/./build.sh -DENABLE_RAISR_OPENCL=ON -DENABLE_AVX512FP16=ON -DENABLE_AVX512=ON + command: | + . /opt/intel/oneapi/ipp/latest/env/vars.sh && \ + ${{ github.workspace }}/build.sh -DENABLE_RAISR_OPENCL=ON -DENABLE_AVX512FP16=ON -DENABLE_AVX512=ON \ + -DCMAKE_LIBRARY_PATH="/opt/intel/oneapi/ipp/latest/lib;${PREFIX}/lib;" \ + -DCMAKE_C_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp" \ + -DCMAKE_CXX_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp" - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 with: From 638e4b99d347c7ef5bbb4939a648c958bef37f6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=82osz=20Linkiewicz?= Date: Mon, 3 Mar 2025 15:15:17 +0100 Subject: [PATCH 2/3] Update build-baremetal-coverity.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miłosz Linkiewicz --- .github/workflows/build-baremetal-coverity.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-baremetal-coverity.yml b/.github/workflows/build-baremetal-coverity.yml index a84d1c6..95584f8 100644 --- a/.github/workflows/build-baremetal-coverity.yml +++ b/.github/workflows/build-baremetal-coverity.yml @@ -86,8 +86,7 @@ jobs: build_language: 'cxx' build_platform: 'linux64' command: | - . /opt/intel/oneapi/ipp/latest/env/vars.sh && \ - ${{ github.workspace }}/build.sh -DENABLE_RAISR_OPENCL=ON -DENABLE_AVX512FP16=ON -DENABLE_AVX512=ON \ + "${{ github.workspace }}/build.sh" -DENABLE_RAISR_OPENCL=ON -DENABLE_AVX512FP16=ON -DENABLE_AVX512=ON \ -DCMAKE_LIBRARY_PATH="/opt/intel/oneapi/ipp/latest/lib;${PREFIX}/lib;" \ -DCMAKE_C_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp" \ -DCMAKE_CXX_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp" From 0428fbfda7a58429df716e89cb6bf9c39b2126f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=82osz=20Linkiewicz?= Date: Mon, 3 Mar 2025 15:33:00 +0100 Subject: [PATCH 3/3] Update build-baremetal-coverity.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miłosz Linkiewicz --- .github/workflows/build-baremetal-coverity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-baremetal-coverity.yml b/.github/workflows/build-baremetal-coverity.yml index 95584f8..20155da 100644 --- a/.github/workflows/build-baremetal-coverity.yml +++ b/.github/workflows/build-baremetal-coverity.yml @@ -86,7 +86,7 @@ jobs: build_language: 'cxx' build_platform: 'linux64' command: | - "${{ github.workspace }}/build.sh" -DENABLE_RAISR_OPENCL=ON -DENABLE_AVX512FP16=ON -DENABLE_AVX512=ON \ + "${{ github.workspace }}/build.sh" -DENABLE_RAISR_OPENCL=ON \ -DCMAKE_LIBRARY_PATH="/opt/intel/oneapi/ipp/latest/lib;${PREFIX}/lib;" \ -DCMAKE_C_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp" \ -DCMAKE_CXX_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp"