File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 5454 other : i686-pc-windows-gnu
5555 steps :
5656 - uses : actions/checkout@v3
57+ - name : Dump Environment
58+ run : ci/dump-environment.sh
5759 - name : Update Rustup (temporary workaround)
5860 run : rustup self update
5961 shell : bash
9799 # download all workspaces.
98100 cargo test --manifest-path benches/benchsuite/Cargo.toml --all-targets -- cargo
99101 cargo check --manifest-path benches/capture/Cargo.toml
102+ # The testsuite generates a huge amount of data, and fetch-smoke-test was
103+ # running out of disk space.
104+ - name : Clear test output
105+ run : |
106+ df -h
107+ rm -rf target/tmp
108+ df -h
100109 - name : Fetch smoke test
101110 run : ci/fetch-smoke-test.sh
102111
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # This script dumps information about the build environment to stdout.
3+
4+ set -euo pipefail
5+ IFS=$' \n\t '
6+
7+ echo " environment variables:"
8+ printenv | sort
9+ echo
10+
11+ echo " disk usage:"
12+ df -h
13+ echo
You can’t perform that action at this time.
0 commit comments