Skip to content

Commit 25a990e

Browse files
Add support for Ubuntu 26.04 in build workflow (#396)
1 parent 766ed82 commit 25a990e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-python-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
PLATFORMS:
2121
description: 'Platforms for execution in "os" or "os_arch" format (arch is "x64" by default)'
2222
required: true
23-
default: 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,rhel-9,rhel-10,macos-15-intel_x64,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64'
23+
default: 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,ubuntu-26.04,ubuntu-26.04_arm64,rhel-9,rhel-10,macos-15-intel_x64,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64'
2424
pull_request:
2525
paths-ignore:
2626
- 'versions-manifest.json'
@@ -44,7 +44,7 @@ jobs:
4444
- name: Generate execution matrix
4545
id: generate-matrix
4646
run: |
47-
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,rhel-9,rhel-10,macos-15-intel,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64' }}".Split(",").Trim()
47+
[String[]]$configurations = "${{ inputs.platforms || 'ubuntu-22.04,ubuntu-22.04_arm64,ubuntu-24.04,ubuntu-24.04_arm64,ubuntu-26.04,ubuntu-26.04_arm64,rhel-9,rhel-10,macos-15-intel,macos-14_arm64,windows-2022_x64,windows-2022_x86,windows-11_arm64' }}".Split(",").Trim()
4848
[String[]]$buildModes = "${{ inputs.threading_build_modes || 'default' }}".Split(",").Trim()
4949
$matrix = @()
5050

0 commit comments

Comments
 (0)