Skip to content

Commit

Permalink
Merge branch 'main' of github.com:cieslarmichal/faker-cxx into featur…
Browse files Browse the repository at this point in the history
…e/external-deps
  • Loading branch information
uilianries committed May 24, 2024
2 parents b32bab9 + 3bc4dc1 commit 9e07e2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
20 changes: 7 additions & 13 deletions .github/workflows/linux-clang-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout
Expand All @@ -22,24 +22,18 @@ jobs:

- name: Install apt-get dependencies
run: |
sudo add-apt-repository ppa:trebelnik-stefina/launchpad-getkeys \
&& sudo apt-get update \
&& sudo apt-get install launchpad-getkeys \
&& sudo sudo apt-get update \
&& sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main' \
&& sudo launchpad-getkeys \
&& sudo apt-get update -y \
&& sudo apt-get install -y lld-16 ninja-build build-essential libstdc++-13-dev \
clang-16 clang-tools-16 llvm-16 lcov
sudo apt -qq update \
&& sudo apt install -y --no-install-recommends --no-install-suggests ninja-build
- name: Initialize submodules
run: git submodule update --init --recursive

- name: Configure CMake
run: |
cmake -B ${{github.workspace}}/build \
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build \
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
-DCMAKE_CXX_COMPILER=/usr/bin/clang++-16 \
-DCMAKE_C_COMPILER=/usr/bin/clang-18 \
-DCMAKE_CXX_COMPILER=/usr/bin/clang++-18 \
-DCODE_COVERAGE:BOOL=ON \
-GNinja
Expand All @@ -50,7 +44,7 @@ jobs:
working-directory: ${{github.workspace}}/build
run: |
ninja faker-ccov-all \
&& llvm-cov-16 show `cat ccov/binaries.list` -instr-profile=ccov/all-merged.profdata > coverage.txt
&& llvm-cov-18 show `cat ccov/binaries.list` -instr-profile=ccov/all-merged.profdata > coverage.txt
- name: Codecov
uses: codecov/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions cmake/cmake-coverage.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ option(
OFF)

# Programs
find_program(LLVM_COV_PATH llvm-cov-16)
find_program(LLVM_PROFDATA_PATH llvm-profdata-16)
find_program(LLVM_COV_PATH llvm-cov-18)
find_program(LLVM_PROFDATA_PATH llvm-profdata-18)
find_program(LCOV_PATH lcov)
find_program(GENHTML_PATH genhtml)
# Hide behind the 'advanced' mode flag for GUI/ccmake
Expand Down

0 comments on commit 9e07e2d

Please sign in to comment.