Compare commits

..

1 commit

Author SHA1 Message Date
cgzones
5ef158c26e
Merge 96836f463b into a7302add63 2024-10-27 01:01:41 +01:00

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [12, 13, 14]
version: [12]
steps:
- uses: actions/checkout@v4
- name: Setting up gcc version
@ -24,11 +24,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [14, 15, 16, 17, 18]
version: [14, 15]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-14 clang-15
- name: Setting up clang version
run: |
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100