Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 851e61e

Browse files
committed
Fixed build
1 parent e8256e7 commit 851e61e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- task-maker-v2-{{ arch }}-
6464
- run:
6565
name: Build
66-
command: bazel build ...
66+
command: bazel build manager python:task_maker remote:all
6767
- run:
6868
name: Test
6969
command: bazel test ...

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ __pycache__/
66
.mypy_cache/
77
*.pyc
88
*pyo
9-
.idea
9+
.idea
10+
release/*.zip

tools/pkg.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _strip_tar_impl(ctx):
4343
find %s -type f -name '*.pyc' -delete &&
4444
find %s -type f -name '*.so' | xargs strip -s &&
4545
tar Jcf %s -C %s . --strip-components=1
46-
""" % (temp.path, input.path, temp.path, temp.path, temp.path, temp.path, output.path, temp.path))
46+
""" % (temp.path, input.path, temp.path, temp.path, temp.path, output.path, temp.path))
4747

4848
def _pkg_tar_impl(ctx):
4949
"""Implementation of the pkg_tar rule."""

0 commit comments

Comments
 (0)