From 455c314383526f4e54a8b23d23e5a8af695d22d0 Mon Sep 17 00:00:00 2001 From: mlischetti Date: Mon, 3 Aug 2026 15:58:34 -0300 Subject: [PATCH] W-23599683: Use mulesoft runners when its possible --- .github/workflows/main.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7ca64c0..7941ecc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,16 +18,16 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, windows-2022, macos-latest ] + os: [ mulesoft-ubuntu, mulesoft-windows, macos-latest ] include: # script_name → artifact-name OS token (our naming convention). # distro_os → Gradle distro classifier (native-cli getOsName(): # macOS is "osx", not "macos"), used for the source # filename produced by native-cli:distro. - - os: ubuntu-latest + - os: mulesoft-ubuntu script_name: linux distro_os: linux - - os: windows-2022 + - os: mulesoft-windows script_name: windows distro_os: windows - os: macos-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4239bd5..729c3e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,16 +12,16 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, windows-2022, macos-latest ] + os: [ mulesoft-ubuntu, mulesoft-windows, macos-latest ] include: # script_name → artifact-name OS token (our naming convention). # distro_os → Gradle distro classifier (native-cli getOsName(): # macOS is "osx", not "macos"), used for the source # filename produced by native-cli:distro. - - os: ubuntu-latest + - os: mulesoft-ubuntu script_name: linux distro_os: linux - - os: windows-2022 + - os: mulesoft-windows script_name: windows distro_os: windows - os: macos-latest