Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-kirienko committed Jun 26, 2024
1 parent dd78b40 commit e917a25
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ jobs:
toolchain: ['clang', 'gcc']
include:
- toolchain: gcc
c-compiler: gcc-13
cxx-compiler: g++-13
c-compiler: gcc
cxx-compiler: g++
- toolchain: clang
c-compiler: clang
cxx-compiler: clang++
steps:
- uses: actions/checkout@v4

- name: Install Dependencies
run: sudo apt install gcc-multilib g++-multilib clang-tidy
run: |
sudo apt install gcc-multilib g++-multilib clang-tidy
g++ --version
clang-tidy --version
- name: Configure CMake
run: >
Expand All @@ -46,8 +49,8 @@ jobs:
build_type: [Release, MinSizeRel]
include:
- toolchain: gcc
c-compiler: gcc-13
cxx-compiler: g++-13
c-compiler: gcc
cxx-compiler: g++
- toolchain: clang
c-compiler: clang
cxx-compiler: clang++
Expand Down

0 comments on commit e917a25

Please sign in to comment.