From ac470e615c61f20aec808f4652e28c7662f12d2d Mon Sep 17 00:00:00 2001 From: James Longo Date: Mon, 12 Aug 2024 10:07:19 -0400 Subject: [PATCH] the x64 macos image was changed to macos-latest-large. see (https://github.com/actions/runner-images?tab=readme-ov-file#available-images) --- .github/workflows/asan.yml | 4 ++-- .github/workflows/build_rlclientlib.yml | 2 +- .github/workflows/build_vw_bp.yml | 2 +- .github/workflows/dotnet_nugets.yml | 4 ++-- .github/workflows/vcpkg_build.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/asan.yml b/.github/workflows/asan.yml index 17142d9f9..02e680065 100644 --- a/.github/workflows/asan.yml +++ b/.github/workflows/asan.yml @@ -18,8 +18,8 @@ jobs: strategy: fail-fast: false matrix: - #os: [windows-latest, ubuntu-latest, macos-latest] - os: [ubuntu-latest, macos-latest] # Temporarily remove windows asan + #os: [windows-latest, ubuntu-latest, macos-latest-large] + os: [ubuntu-latest, macos-latest-large] # Temporarily remove windows asan preset: [vcpkg-asan-debug, vcpkg-ubsan-debug] exclude: # UBSan not supported by MSVC on Windows diff --git a/.github/workflows/build_rlclientlib.yml b/.github/workflows/build_rlclientlib.yml index 3300a5ff2..17dddbba6 100644 --- a/.github/workflows/build_rlclientlib.yml +++ b/.github/workflows/build_rlclientlib.yml @@ -75,7 +75,7 @@ jobs: build-macos: # Mac build doesn't have any additional features enabled name: rlclientlib-${{ matrix.build_type }}-macos-latest - runs-on: macos-latest + runs-on: macos-latest-large strategy: fail-fast: false matrix: diff --git a/.github/workflows/build_vw_bp.yml b/.github/workflows/build_vw_bp.yml index 21c3e37e7..21e136189 100644 --- a/.github/workflows/build_vw_bp.yml +++ b/.github/workflows/build_vw_bp.yml @@ -26,7 +26,7 @@ jobs: config: - { os: "windows-latest", vcpkg_target_triplet: "x64-windows-static" } - { os: "ubuntu-latest", vcpkg_target_triplet: "x64-linux" } - - { os: "macos-latest", vcpkg_target_triplet: "x64-osx" } + - { os: "macos-latest-large", vcpkg_target_triplet: "x64-osx" } build: # Set the appropriate static runtime for MSVC on Windows # CMake ignores the CMAKE_MSVC_RUNTIME_LIBRARY option on other platforms diff --git a/.github/workflows/dotnet_nugets.yml b/.github/workflows/dotnet_nugets.yml index a383cda5a..2d5a2bb24 100644 --- a/.github/workflows/dotnet_nugets.yml +++ b/.github/workflows/dotnet_nugets.yml @@ -29,7 +29,7 @@ jobs: config: - { os: "windows-latest", runtime_id: "win-x64", vcpkg_target_triplet: "x64-windows-static" } - { os: "ubuntu-latest", runtime_id: "linux-x64", vcpkg_target_triplet: "x64-linux" } - - { os: "macos-latest", runtime_id: "osx-x64", vcpkg_target_triplet: "x64-osx" } + - { os: "macos-latest-large", runtime_id: "osx-x64", vcpkg_target_triplet: "x64-osx" } runs-on: ${{matrix.config.os}} steps: - uses: actions/checkout@v2 @@ -162,7 +162,7 @@ jobs: config: - { os: "windows-latest", runtime_id: "win-x64" } - { os: "ubuntu-latest", runtime_id: "linux-x64" } - - { os: "macos-latest", runtime_id: "osx-x64" } + - { os: "macos-latest-large", runtime_id: "osx-x64" } runs-on: ${{matrix.config.os}} steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/vcpkg_build.yml b/.github/workflows/vcpkg_build.yml index 4fb2fc27a..8f0664337 100644 --- a/.github/workflows/vcpkg_build.yml +++ b/.github/workflows/vcpkg_build.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest-large, windows-latest] preset: [vcpkg-debug, vcpkg-release] steps: - uses: actions/checkout@v3