Skip to content

Commit

Permalink
Use same runners in release as in test workflow
Browse files Browse the repository at this point in the history
windows-2016 runners were
removed (actions/runner-images#4312)
  • Loading branch information
bertschneider committed Apr 28, 2022
1 parent 8a49448 commit 4343374
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@ on:
workflow_dispatch:

jobs:

build_release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-10.15, windows-2016]
os: [ubuntu-latest, macos-11, windows-latest]
include:
- os: ubuntu-latest
arch: "linux"
bazel_args: "--config=toolchain --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux"
- os: macos-10.15
- os: macos-11
arch: "macos-x86_64"
bazel_args: "--config=toolchain --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-darwin --xcode_version_config=//.github:host_xcodes"
- os: windows-2016
- os: windows-latest
arch: "windows"
bazel_args: ""

Expand Down

0 comments on commit 4343374

Please sign in to comment.