ci: use windows-2025 for the gcc-windows job (since it has gcc 14.2.0) (#24304)

This commit is contained in:
Delyan Angelov 2025-04-24 13:03:25 +03:00 committed by GitHub
parent 87d3a1d272
commit 59909cde89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 55 additions and 6 deletions

View file

@ -46,12 +46,16 @@ pub const is_node_present = os.execute('node --version').exit_code == 0
pub const is_go_present = os.execute('go version').exit_code == 0
pub const is_ruby_present = os.execute('ruby --version').exit_code == 0
&& os.execute('pkg-config ruby --libs').exit_code == 0
pub const is_python_present = os.execute('python --version').exit_code == 0
&& os.execute('pkg-config python3 --libs').exit_code == 0
pub const is_sqlite3_present = os.execute('sqlite3 --version').exit_code == 0
&& os.execute('pkg-config sqlite3 --libs').exit_code == 0
pub const is_openssl_present = os.execute('openssl --version').exit_code == 0
&& os.execute('pkg-config openssl --libs').exit_code == 0
pub const all_processes = get_all_processes()