Skip to content

Commit

Permalink
[GHA] Attempting refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyash-b committed Jul 13, 2024
1 parent e6ab587 commit 780626f
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,14 @@ jobs:
strategy:
matrix:
compiler:
- {type: clang, version: 16}
- {type: clang, version: 17}
- {type: clang, version: 18}
- {type: gcc, version: 12}
- {type: gcc, version: 13}
- {type: gcc, version: 14}
- {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++}
include:
- os: "ubuntu-24.04"
- compiler: {type: gcc, version: 14}
package: g++
cc: gcc
cxx: g++
- compiler: {type: clang}
package: clang
cc: clang
cxx: clang++
steps:
- uses: actions/checkout@v4
- name: Setup Compiler
Expand Down

0 comments on commit 780626f

Please sign in to comment.