Skip to content

Commit

Permalink
#11762: change to use local builders for build.yaml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ttmchiou committed Aug 27, 2024
1 parent f75f08c commit 68712e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
strategy:
matrix:
build: [
{type: Debug, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: ubuntu-20.04, os: ubuntu-20.04},
{type: RelWithDebInfo, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: build-docker, os: ubuntu-20.04},
{type: Debug, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: ["build", "in-service"], os: ubuntu-20.04},
{type: RelWithDebInfo, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: ["build", "in-service"], os: ubuntu-20.04},
# {type: Debug, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: ubuntu-22.04},
# {type: RelWithDebInfo, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: ubuntu-22.04},
# {type: Release, cxx_compiler: clang++-17, c_compiler: clang-17, runs-on: ubuntu-22.04},
# {type: Debug, cxx_compiler: g++-12, c_compiler: gcc-12, runs-on: ubuntu-22.04, os: ubuntu-22.04},
# {type: RelWithDebInfo, cxx_compiler: g++-12, c_compiler: gcc-12, runs-on: ubuntu-22.04, os: ubuntu-22.04},
{type: Release, cxx_compiler: g++-12, c_compiler: gcc-12, runs-on: ubuntu-22.04, os: ubuntu-22.04},
{type: Release, cxx_compiler: g++-12, c_compiler: gcc-12, runs-on: ["build", "in-service"], os: ubuntu-22.04},
]
arch: [grayskull, wormhole_b0, blackhole]
env:
Expand Down

0 comments on commit 68712e4

Please sign in to comment.