Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaa288dc

Browse files
committed
fix: Update macOS matrix to use 'macos-14' for CI jobs
fix: Suppress stderr output in CargoBuilder for cleaner build logs
1 parent9bb1e09 commitaa288dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

‎.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
matrix:
4343
os:
4444
-ubuntu-24.04
45-
-macos-15
45+
-macos-14
4646
php-version:
4747
-"7.0"
4848
-"7.1"

‎phper-test/src/cargo.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ impl CargoBuilder {
3434
letmut command =Command::new(env!("CARGO"));
3535
command
3636
.args(["build","--lib","--message-format","json"])
37+
.stdin(Stdio::null())
3738
.stdout(Stdio::piped())
38-
.stderr(Stdio::piped());
39+
.stderr(Stdio::null());
3940
Self{ command}
4041
}
4142

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp