Skip to content

Commit

Permalink
Update to ubuntu 22.04 and modern compilers for linux github actions …
Browse files Browse the repository at this point in the history
…biuld
  • Loading branch information
mmp committed Nov 24, 2024
1 parent ead1237 commit f2fa4db
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions .github/workflows/ci-cpu-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,34 @@ jobs:
matrix:
config: [ '', '-DPBRT_DBG_LOGGING=True', '-DPBRT_FLOAT_AS_DOUBLE=True' ]
compilers:
- {
cc: "gcc-9",
cxx: "g++-9",
}
- {
cc: "gcc-10",
cxx: "g++-10",
}
- {
cc: "clang-10",
cxx: "clang++-10",
cc: "gcc-11",
cxx: "g++-11",
}
- {
cc: "gcc-12",
cxx: "g++-12",
}
- {
cc: "clang-16",
cxx: "clang++-16",
}
- {
cc: "clang-17",
cxx: "clang++-17",
}
- {
cc: "clang-11",
cxx: "clang++-11",
cc: "clang-18",
cxx: "clang++-18",
}
# WAR github actions flakiness
# - {
# cc: "clang-12",
# cxx: "clang++-12",
# }

fail-fast: false

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
name: Build and test ${{ matrix.compilers.cxx }} - ${{ matrix.config }}

steps:
Expand Down

0 comments on commit f2fa4db

Please sign in to comment.