File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 54
54
other : i686-pc-windows-gnu
55
55
steps :
56
56
- uses : actions/checkout@v3
57
+ - name : Dump Environment
58
+ run : ci/dump-environment.sh
57
59
- name : Update Rustup (temporary workaround)
58
60
run : rustup self update
59
61
shell : bash
97
99
# download all workspaces.
98
100
cargo test --manifest-path benches/benchsuite/Cargo.toml --all-targets -- cargo
99
101
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
100
109
- name : Fetch smoke test
101
110
run : ci/fetch-smoke-test.sh
102
111
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