From 090260dd2fea5ebcd63d4dfb5c7c34c6ba492862 Mon Sep 17 00:00:00 2001 From: tokoko Date: Thu, 25 Apr 2024 20:38:20 +0000 Subject: [PATCH] bump macos runner to 13 Signed-off-by: tokoko --- .github/fork_workflows/fork_pr_integration_tests_aws.yml | 5 ----- .github/fork_workflows/fork_pr_integration_tests_gcp.yml | 5 ----- .../fork_workflows/fork_pr_integration_tests_snowflake.yml | 5 ----- .github/workflows/build_wheels.yml | 6 +++--- .github/workflows/nightly-ci.yml | 2 +- .github/workflows/unit_tests.yml | 4 ++-- 6 files changed, 6 insertions(+), 21 deletions(-) diff --git a/.github/fork_workflows/fork_pr_integration_tests_aws.yml b/.github/fork_workflows/fork_pr_integration_tests_aws.yml index 196feb78a4..4e418e6b22 100644 --- a/.github/fork_workflows/fork_pr_integration_tests_aws.yml +++ b/.github/fork_workflows/fork_pr_integration_tests_aws.yml @@ -137,11 +137,6 @@ jobs: sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb sudo apt update sudo apt install -y -V libarrow-dev - - name: Install apache-arrow on macos - if: matrix.os == 'macos-12' - run: | - brew install apache-arrow - brew install pkg-config - name: Install dependencies run: make install-python-ci-dependencies - name: Setup Redis Cluster diff --git a/.github/fork_workflows/fork_pr_integration_tests_gcp.yml b/.github/fork_workflows/fork_pr_integration_tests_gcp.yml index 404d20c303..a6fc2110c5 100644 --- a/.github/fork_workflows/fork_pr_integration_tests_gcp.yml +++ b/.github/fork_workflows/fork_pr_integration_tests_gcp.yml @@ -81,11 +81,6 @@ jobs: sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb sudo apt update sudo apt install -y -V libarrow-dev - - name: Install apache-arrow on macos - if: matrix.os == 'macOS-12' - run: | - brew install apache-arrow - brew install pkg-config - name: Install dependencies run: make install-python-ci-dependencies - name: Setup Redis Cluster diff --git a/.github/fork_workflows/fork_pr_integration_tests_snowflake.yml b/.github/fork_workflows/fork_pr_integration_tests_snowflake.yml index 02cb2ecf35..ee0e256eca 100644 --- a/.github/fork_workflows/fork_pr_integration_tests_snowflake.yml +++ b/.github/fork_workflows/fork_pr_integration_tests_snowflake.yml @@ -71,11 +71,6 @@ jobs: sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb sudo apt update sudo apt install -y -V libarrow-dev - - name: Install apache-arrow on macos - if: matrix.os == 'macos-12' - run: | - brew install apache-arrow - brew install pkg-config - name: Install dependencies run: make install-python-ci-dependencies - name: Setup Redis Cluster diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index d48012f6ea..59d274c494 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -79,7 +79,7 @@ jobs: build-source-distribution: name: Build source distribution - runs-on: macos-12 + runs-on: macos-13 steps: - uses: actions/checkout@v4 - name: Setup Python @@ -136,7 +136,7 @@ jobs: needs: [build-python-wheel, build-source-distribution, get-version] strategy: matrix: - os: [ubuntu-latest, macos-12 ] + os: [ubuntu-latest, macos-13 ] python-version: ["3.9", "3.10"] from-source: [ True, False ] env: @@ -165,7 +165,7 @@ jobs: name: wheels path: dist - name: Install OS X dependencies - if: matrix.os == 'macos-12' + if: matrix.os == 'macos-13' run: brew install coreutils - name: Install wheel if: ${{ !matrix.from-source }} diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml index 4d8c7c09b8..9afea5cb6f 100644 --- a/.github/workflows/nightly-ci.yml +++ b/.github/workflows/nightly-ci.yml @@ -197,7 +197,7 @@ jobs: sudo apt update sudo apt install -y -V libarrow-dev - name: Install apache-arrow on macos - if: matrix.os == 'macos-12' + if: matrix.os == 'macos-13' run: brew install apache-arrow - name: Install dependencies run: make install-python-ci-dependencies diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index cbd222bdb7..576da4e8f5 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -8,9 +8,9 @@ jobs: fail-fast: false matrix: python-version: [ "3.9", "3.10" ] - os: [ ubuntu-latest, macos-12 ] + os: [ ubuntu-latest, macos-13 ] exclude: - - os: macos-12 + - os: macos-13 python-version: "3.9" env: OS: ${{ matrix.os }}