xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 10872b7c328c10503841b17dc113d287a4c2adc5

Fix CI config
`ccache` was incorrectly defined only for C through $CC, while $CXX is
what we need here.

The same can be said about use of clang on CI, so it will be used only
starting from this commit.
Author: xaizek
Author date (UTC): 2022-11-13 18:42
Committer name: xaizek
Committer date (UTC): 2022-11-14 18:26
Parent(s): 019fd569c504280e6ec44f0ae06bc59b6de62428
Signing key: 99DC5E4DB05F6BE2
Tree: 4a692746dac336c3854d6e3c0e8c71560f413f1f
File Lines added Lines deleted
scripts/appveyor/config.yml 4 0
File scripts/appveyor/config.yml changed (mode: 100644) (index 3bf94c5..1ef67c7)
... ... environment:
19 19 matrix: matrix:
20 20 - BUILDENV: ubuntu - BUILDENV: ubuntu
21 21 CC: ccache clang CC: ccache clang
22 CXX: ccache clang++
22 23 APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
23 24 - BUILDENV: ubuntu - BUILDENV: ubuntu
24 25 CC: ccache gcc CC: ccache gcc
26 CXX: ccache g++
25 27 APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
26 28 - BUILDENV: macos - BUILDENV: macos
27 29 CC: ccache clang CC: ccache clang
30 CXX: ccache clang++
28 31 APPVEYOR_BUILD_WORKER_IMAGE: macOS APPVEYOR_BUILD_WORKER_IMAGE: macOS
29 32 - BUILDENV: valgrind - BUILDENV: valgrind
30 33 CC: ccache gcc CC: ccache gcc
34 CXX: ccache g++
31 35 APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
32 36
33 37 cache: cache:
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master