From 97bfd7a85e905ac543ced91dffaadda3c04dbc5a Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 19 Oct 2020 09:37:59 +0200 Subject: [PATCH] codecov: attempt to fix libmemcachedinternal path mismatch --- .github/workflows/cmake-build-ci.gen | 2 +- .github/workflows/cmake-build-ci.yml | 10 +++++----- .travis.yml | 2 +- codecov.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake-build-ci.gen b/.github/workflows/cmake-build-ci.gen index dddde934..d8b46d42 100755 --- a/.github/workflows/cmake-build-ci.gen +++ b/.github/workflows/cmake-build-ci.gen @@ -165,7 +165,7 @@ function steps_build() { - name: Test run: make -C build -j2 test - name: Install - run: make -C build -j2 install DESTDIR=. + run: make -C build -j2 install DESTDIR=/tmp - name: Failed tests log if: ${{ failure() }} run: cat build/Testing/Temporary/LastTest.log || true diff --git a/.github/workflows/cmake-build-ci.yml b/.github/workflows/cmake-build-ci.yml index 3e9bf4af..b6cc23dc 100644 --- a/.github/workflows/cmake-build-ci.yml +++ b/.github/workflows/cmake-build-ci.yml @@ -92,7 +92,7 @@ jobs: - name: Test run: make -C build -j2 test - name: Install - run: make -C build -j2 install DESTDIR=. + run: make -C build -j2 install DESTDIR=/tmp - name: Failed tests log if: ${{ failure() }} run: cat build/Testing/Temporary/LastTest.log || true @@ -153,7 +153,7 @@ jobs: - name: Test run: make -C build -j2 test - name: Install - run: make -C build -j2 install DESTDIR=. + run: make -C build -j2 install DESTDIR=/tmp - name: Failed tests log if: ${{ failure() }} run: cat build/Testing/Temporary/LastTest.log || true @@ -215,7 +215,7 @@ jobs: - name: Test run: make -C build -j2 test - name: Install - run: make -C build -j2 install DESTDIR=. + run: make -C build -j2 install DESTDIR=/tmp - name: Failed tests log if: ${{ failure() }} run: cat build/Testing/Temporary/LastTest.log || true @@ -274,7 +274,7 @@ jobs: - name: Test run: make -C build -j2 test - name: Install - run: make -C build -j2 install DESTDIR=. + run: make -C build -j2 install DESTDIR=/tmp - name: Failed tests log if: ${{ failure() }} run: cat build/Testing/Temporary/LastTest.log || true @@ -404,7 +404,7 @@ jobs: - name: Test run: make -C build -j2 test - name: Install - run: make -C build -j2 install DESTDIR=. + run: make -C build -j2 install DESTDIR=/tmp - name: Failed tests log if: ${{ failure() }} run: cat build/Testing/Temporary/LastTest.log || true diff --git a/.travis.yml b/.travis.yml index 1428b20a..df4174bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ script: - cmake -DMEMCACHED_BINARY=/opt/bin/memcached .. - make -j2 VERBOSE=1 - make test VERBOSE=1 - - make install DESTDIR=. + - make install DESTDIR=/tmp after_failure: - cat Testing/Temporary/LastTest.log || true diff --git a/codecov.yml b/codecov.yml index 5e59977b..153d032a 100644 --- a/codecov.yml +++ b/codecov.yml @@ -6,7 +6,7 @@ ignore: - "/Applications/" fixes: - - "libmemcachedinternal::libmemcached" + - "src/libmemcachedinternal::src/libmemcached" coverage: status: -- 2.30.2