mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
ci: use windows-2025 for the gcc-windows job (since it has gcc 14.2.0) (#24304)
This commit is contained in:
parent
87d3a1d272
commit
59909cde89
6 changed files with 55 additions and 6 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue