From 96b6f51dfd73d5202198961ce412978bafa56717 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 19 Feb 2020 16:37:13 +0000 Subject: [PATCH] Update macos build version --- .github/workflows/macos_nightly.yml | 2 ++ .github/workflows/release.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/macos_nightly.yml b/.github/workflows/macos_nightly.yml index 431469d447..94d616c014 100644 --- a/.github/workflows/macos_nightly.yml +++ b/.github/workflows/macos_nightly.yml @@ -48,6 +48,8 @@ jobs: bash tools/ci_testing/install_bazel_macos.sh $BAZEL_VERSION bazel build \ -c opt \ + --copt -mmacosx-version-min=10.13 \ + --linkopt -mmacosx-version-min=10.13 \ --noshow_progress \ --noshow_loading_progress \ --verbose_failures \ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4181fb2fdc..693d99afc5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,6 +106,8 @@ jobs: bash tools/ci_testing/install_bazel_macos.sh $BAZEL_VERSION bazel build \ -c opt \ + --copt -mmacosx-version-min=10.13 \ + --linkopt -mmacosx-version-min=10.13 \ --noshow_progress \ --noshow_loading_progress \ --verbose_failures \