We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97fce26 commit fe1f414Copy full SHA for fe1f414
.github/workflows/tests.yml
@@ -97,6 +97,20 @@ jobs:
97
with:
98
command: test
99
100
+ - id: debug
101
+ run: |
102
+ rustc --print cfg | grep = > rustc.vars
103
+ source rustc.vars
104
+ env
105
+
106
+ if [ -z "${target_env}" ]; then
107
+ export HOST="${target_arch}-${target_vendor}-${target_os}"
108
+ else
109
+ export HOST="${target_arch}-${target_vendor}-${target_os}-${target_env}"
110
+ fi
111
112
+ echo "HOST=$HOST"
113
114
cargo-rustdoc:
115
runs-on: ubuntu-latest
116
steps:
0 commit comments