@@ -44,6 +44,9 @@ if [[ "${version_tensorflow_sys_crate}" != "${version_tensorflow_sys_readme}" ]]
44
44
exit 1
45
45
fi
46
46
47
+ # GitHub seems to choke on the large number of warnings from dependencies.
48
+ export RUSTFLAGS=" -Awarnings"
49
+
47
50
# Legacy Keras required for now because Keras 3 requires exporting models as
48
51
# Keras format, which the C API can't read:
49
52
# https://github.com/tensorflow/tensorflow/issues/70514
@@ -58,8 +61,8 @@ run cargo run --example regression
58
61
run cargo run --example xor
59
62
run cargo run --features tensorflow_unstable --example expressions
60
63
run cargo run --features eager --example mobilenetv3
61
- run cargo doc -vv - -features experimental,tensorflow_unstable,ndarray,eager
62
- run cargo doc -vv - -features experimental,tensorflow_unstable,ndarray,eager,private-docs-rs
64
+ run cargo doc --features experimental,tensorflow_unstable,ndarray,eager
65
+ run cargo doc --features experimental,tensorflow_unstable,ndarray,eager,private-docs-rs
63
66
# TODO(#66): Re-enable: (cd tensorflow-sys && cargo test -vv -j 1)
64
67
(cd tensorflow-sys && run cargo run --example multiplication)
65
68
(cd tensorflow-sys && run cargo run --example tf_version)
0 commit comments