Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d450f9c

Browse files
committedMay 26, 2025·
Fixes Solaris CI after solaris-vm was updated to Solaris 11.4.81 CBE
It also specifies exact solaris-vm version to avoid future disruptions.
1 parent c1d2b8e commit d450f9c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259
steps:
260260
- uses: actions/checkout@v4
261261
- name: test on Solaris
262-
uses: vmactions/solaris-vm@v1
262+
uses: vmactions/solaris-vm@v1.1.3
263263
with:
264264
release: "11.4-gcc"
265265
usesh: true

‎src/unix/solarish/x86_64.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ s_no_extra_traits! {
9191
#[cfg(target_os = "solaris")]
9292
pub uc_xrs: solaris::xrs_t,
9393
#[cfg(target_os = "solaris")]
94-
pub uc_filler: [c_long; 3],
94+
pub uc_lwpid: c_uint,
95+
#[cfg(target_os = "solaris")]
96+
pub uc_filler: [c_long; 2],
9597
}
9698
}
9799

0 commit comments

Comments
 (0)
Please sign in to comment.