diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a1f9b6..fdbc32c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,10 +11,6 @@ jobs: contents: write # Grant write permissions to modify repository contents steps: - uses: actions/checkout@v4 - - name: Set up Bazel cache directory - run: | - mkdir -p .bazel-cache - chmod -R 777 .bazel-cache - name: Build run: make build - name: Test diff --git a/Makefiles/debug.mk b/Makefiles/debug.mk index 9dea1ca..352e693 100644 --- a/Makefiles/debug.mk +++ b/Makefiles/debug.mk @@ -21,7 +21,7 @@ build_img: # Code Build build: build_img - @$(DOCKER_RUN_CMD) $(BUILD_CMD) + $(DOCKER_RUN_CMD) $(BUILD_CMD) # Test code test: build_img