Skip to content

Commit 1ee0549

Browse files
authored
Merge pull request #4462 from psumbera/new-cbe
Fixes Solaris CI after solaris-vm was update to Solaris 11.4.81 CBE.
2 parents c1d2b8e + d450f9c commit 1ee0549

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)