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.
1 parent 88ddee7 commit a4b0bb4Copy full SHA for a4b0bb4
.github/workflows/build.yml
@@ -49,6 +49,11 @@ jobs:
49
bazelisk-cache: true
50
disk-cache: false
51
repository-cache: false
52
+ module-root: ${{ github.workspace }}/test/bazel_workspace
53
+
54
+ - name: Build Bazel workspace to assure it is working & warm up cache
55
+ run: bazel build //...
56
+ working-directory: ${{ github.workspace }}/test/bazel_workspace/
57
58
- run: xvfb-run -a npm test
59
if: runner.os == 'Linux'
test/bazel_workspace/.bazelversion
@@ -0,0 +1 @@
1
+8.3.1
test/bazel_workspace/pkg1/BUILD
@@ -5,5 +5,5 @@ py_binary(
5
)
6
filegroup(
7
name="foo",
8
- srcs=["foobar.txt"],
+ srcs=["subfolder/foo.txt"],
9
0 commit comments