Skip to content

Commit 991695d

Browse files
committed
1 parent f219c26 commit 991695d

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

.github/workflows/coverity.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ permissions: read-all
2929

3030
env:
3131
COVERITY_PROJECT: vyevtyus%2FoneMath
32-
COVERITY_VERSION: 2024.6.1
3332
LAPACK_VERSION: 3.12.0
3433

3534
jobs:
@@ -40,15 +39,7 @@ jobs:
4039
steps:
4140
- uses: actions/checkout@v4
4241

43-
- name: Restore Coverity from cache
44-
id: cache-coverity
45-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
46-
with:
47-
path: cov-linux64-tool
48-
key: coverity-${{ env.COVERITY_VERSION }}
49-
5042
- name: Download Coverity Build Tool (linux64)
51-
if: steps.cache-coverity.outputs.cache-hit != 'true'
5243
run: |
5344
curl --fail https://scan.coverity.com/download/cxx/linux64 --output ${GITHUB_WORKSPACE}/cov-linux64-tool.tar.gz \
5445
--data "token=${{secrets.COVERITY_TOKEN}}&project=${{env.COVERITY_PROJECT}}" || { echo "Download failed"; exit 1; }
@@ -71,14 +62,14 @@ jobs:
7162
id: cache-lapack
7263
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
7364
with:
74-
path: lapack
65+
path: lapack/install
7566
key: lapack-${{ env.LAPACK_VERSION }}
7667

7768
- name: Install netlib
7869
if: steps.cache-lapack.outputs.cache-hit != 'true'
7970
run: |
8071
curl -sL https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v${LAPACK_VERSION}.tar.gz | tar zx
81-
SHARED_OPT="lapack-${LAPACK_VERSION} -DBUILD_SHARED_LIBS=on -DCBLAS=on -DLAPACKE=on -DCMAKE_INSTALL_PREFIX=${PWD}/lapack"
72+
SHARED_OPT="lapack-${LAPACK_VERSION} -DBUILD_SHARED_LIBS=on -DCBLAS=on -DLAPACKE=on -DCMAKE_INSTALL_PREFIX=${PWD}/lapack/install"
8273
# # 32 bit int
8374
# cmake ${SHARED_OPT} -B lapack/build32
8475
# cmake --build lapack/build32 ${PARALLEL} --target install

0 commit comments

Comments
 (0)