Skip to content

Commit

Permalink
[GHA] Cleaning up refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyash-b committed Jul 13, 2024
1 parent 780626f commit 984af47
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,19 @@ jobs:
strategy:
matrix:
compiler:
- {type: clang, version: 16, package: clang, cc: clang, cxx: clang++}
- {type: clang, version: 17, package: clang, cc: clang, cxx: clang++}
- {type: clang, version: 18, package: clang, cc: clang, cxx: clang++}
- {type: gcc, version: 12, package: g++, cc: gcc, cxx: g++}
- {type: gcc, version: 13, package: g++, cc: gcc, cxx: g++}
- {type: gcc, version: 14, package: g++, cc: gcc, cxx: g++}
- {type: clang, version: 16, package: clang, cc: clang, cxx: clang++}
- {type: clang, version: 17, package: clang, cc: clang, cxx: clang++}
- {type: clang, version: 18, package: clang, cc: clang, cxx: clang++}
include:
- os: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- name: Setup Compiler
run: |
sudo apt-get update
echo DEBUG: sudo apt-get install -y man ${{ matrix.compiler.package }}-${{ matrix.compiler.version }}
sudo apt-get install -y man ${{ matrix.compiler.package }}-${{ matrix.compiler.version }}
- name: Install and Test
env:
Expand Down

0 comments on commit 984af47

Please sign in to comment.