We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68c3f7b commit b27feb1Copy full SHA for b27feb1
02-BUILD.sh
@@ -1,8 +1,12 @@
1
cd zml
2
-echo "Starting Bazel build..."
3
-bazel build //zml:sources
+# We don't use bazel build //zml:sources
+# because it pulls too many files.
4
+# Some could be useful like sentencepiece.pb.zig,
5
+# but they aren't properly put in places where the wasm code expects them,
6
+# resulting in broken links + polluting the search bar.
7
+tar -cf sources.tar zml/*.zig zml/**/*.zig
8
cd ..
-cp ./zml/bazel-bin/zml/sources.tar WORKSPACE/
9
+cp -f ./zml/sources.tar WORKSPACE/
10
11
cd WORKSPACE
12
echo "Starting Zine build..."
0 commit comments