We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
libm
1 parent 3689d11 commit ebd6306Copy full SHA for ebd6306
.github/workflows/ci.yaml
@@ -102,6 +102,11 @@ jobs:
102
cargo apk build -p example-runner-wgpu --lib --features use-installed-tools --no-default-features
103
echo "::endgroup::"
104
105
+ - name: Ensure libm is not getting into the host build (https://github.com/EmbarkStudios/rust-gpu/issues/1121)
106
+ run: |
107
+ LIBM_MATCHES=$(cargo tree -e features -p spirv-std | grep --count libm)
108
+ if [ "$LIBM_MATCHES" != "" ]; then echo "Found libm in dependency tree"; exit 1; fi
109
+
110
# This just allows us to branch protect on this one job rather needing to change
111
# it if the test matrix changes
112
test_success:
0 commit comments