Skip to content

Commit

Permalink
chore: Update default Conan profile to use Clang 18 and libc++
Browse files Browse the repository at this point in the history
  • Loading branch information
SavenkovIgor committed Jul 11, 2024
1 parent 1cfdbba commit a5c431a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ on:
push:
branches: [ "main" ]

env:
CLANG_VERSION: 18

jobs:
build:
timeout-minutes: 30
Expand All @@ -10,6 +13,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install Clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh ${{ env.CLANG_VERSION }} all
- name: Install latest cmake and ninja
uses: lukka/get-cmake@latest

Expand Down

0 comments on commit a5c431a

Please sign in to comment.