Skip to content

Commit

Permalink
Add gcc builds into GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mi-La committed Sep 9, 2024
1 parent 5113f71 commit 3d877fd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ jobs:
fail-fast: false
matrix:
include:
- { os: "ubuntu-22.04", platform: "64", gcc-version: "11", cxx-standard: "17", build-type: "Release" }
- { os: "ubuntu-22.04", platform: "64", gcc-version: "11", cxx-standard: "17", build-type: "Debug" }
- { os: "ubuntu-22.04", platform: "32", gcc-version: "11", cxx-standard: "17", build-type: "Release" }
- { os: "ubuntu-22.04", platform: "32", gcc-version: "11", cxx-standard: "17", build-type: "Debug" }
- { os: "ubuntu-22.04", platform: "64", clang-version: "14", cxx-standard: "17", build-type: "Release" }
- { os: "ubuntu-22.04", platform: "64", clang-version: "14", cxx-standard: "17", build-type: "Debug" }
- { os: "ubuntu-22.04", platform: "32", clang-version: "14", cxx-standard: "17", build-type: "Release" }
- { os: "ubuntu-22.04", platform: "32", clang-version: "14", cxx-standard: "17", build-type: "Debug" }


runs-on: ${{matrix.os}}
name: "\
${{matrix.os}}-${{matrix.platform}}-\
Expand Down

0 comments on commit 3d877fd

Please sign in to comment.