Skip to content

Commit

Permalink
Updated KCov to v43 for GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Jan 9, 2025
1 parent 0efff83 commit 1775a7f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/scaffold-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4

- name: Setup kcov
run: wget https://github.com/SimonKagstrom/kcov/releases/download/v42/kcov-amd64.tar.gz && tar -xf kcov-amd64.tar.gz && sudo mv ./usr/local/bin/kcov /usr/local/bin/kcov && kcov --version
- name: Install Kcov
run: |
KCOV_VERSION=v43 && \
sudo apt update && sudo apt install -y git cmake g++ libcurl4-openssl-dev zlib1g-dev libdw-dev libiberty-dev binutils-dev && \
git clone https://github.com/SimonKagstrom/kcov.git && \
cd kcov && git checkout ${KCOV_VERSION} && mkdir build && cd build && \
cmake .. && make && sudo make install && \
kcov --version
- name: Install Ahoy
run: |
Expand Down

0 comments on commit 1775a7f

Please sign in to comment.