Skip to content

Commit

Permalink
Use newer macos runners (#2732)
Browse files Browse the repository at this point in the history
  • Loading branch information
ograff authored Jul 9, 2024
1 parent 116f6db commit 6080e49
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
matrix:
# Create a job for each target triple
include:
- os: macos-11
- os: macos-12
env:
TARGET: "aarch64-apple-darwin"
- os: ubuntu-20.04
Expand All @@ -59,7 +59,7 @@ jobs:
- os: windows-2022
env:
TARGET: "aarch64-pc-windows-msvc"
- os: macos-11
- os: macos-12
env:
TARGET: "x86_64-apple-darwin"
- os: ubuntu-20.04
Expand Down Expand Up @@ -88,10 +88,10 @@ jobs:
TARGET: "${{ matrix.env.TARGET }}"
- name: Setup macos build tooling
run: |
sudo xcode-select -s /Applications/Xcode_12.4.app/Contents/Developer/
sudo xcode-select -s /Applications/Xcode_13.1.app/Contents/Developer/
# Set SDK environment variables
echo "SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path)" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version)" >> $GITHUB_ENV
echo "SDKROOT=$(xcrun -sdk macosx12.0 --show-sdk-path)" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx12.0 --show-sdk-platform-version)" >> $GITHUB_ENV
if: startswith(matrix.os, 'macos')
- name: Setup Windows Bazelrc
run: |
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "rules_rust",
version = "0.47.0",
version = "0.47.1",
)

bazel_dep(
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version of rules_rust."""

VERSION = "0.47.0"
VERSION = "0.47.1"

0 comments on commit 6080e49

Please sign in to comment.