Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cre4ture committed Apr 29, 2024
1 parent 31b2e68 commit 54fbad6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,9 @@ jobs:
${{ matrix.job.cargo-options }} ${{ steps.dep_vars.outputs.CARGO_UTILITY_LIST_OPTIONS }}
env:
RUST_BACKTRACE: "1"
- name: Setup tmate session
if: failure()
uses: mxschmitt/action-tmate@v3
- name: Archive executable artifacts
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -1027,9 +1030,6 @@ jobs:
RUSTDOCFLAGS: "-Cpanic=abort"
RUST_BACKTRACE: "1"
# RUSTUP_TOOLCHAIN: ${{ steps.vars.outputs.TOOLCHAIN }}
- name: Setup tmate session
if: failure()
uses: mxschmitt/action-tmate@v3
- name: Generate coverage data (via `grcov`)
id: coverage
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions tests/common/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -749,8 +749,8 @@ impl CmdResult {

/// Print process output information for debugging purposes.
pub fn print_outputs(&self) {
println!("command exit status: {:?}", self.exit_status);
println!(
eprintln!("command exit status: {:?}", self.exit_status);
eprintln!(
"child-stdout:\n{}\nchild-stderr:\n{}",
String::from_utf8_lossy(self.stdout()),
String::from_utf8_lossy(self.stderr()),
Expand Down

0 comments on commit 54fbad6

Please sign in to comment.