Skip to content

Commit

Permalink
don't run clean-gen twice
Browse files Browse the repository at this point in the history
  • Loading branch information
dmathieu committed Nov 28, 2024
1 parent f83a33f commit 59b7c9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
check-latest: true
cache-dependency-path: "**/go.sum"
- name: Generate
run: make clean protobuf go-mod-tidy
run: make clean protobuf tidy
- name: Run tests
run: make test
test-compatibility:
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ clean-gen:
rm -rf $(GEN_TEMP_DIR)

.PHONY: clean
clean: clean-gen
clean:
rm -rf $(GEN_TEMP_DIR)
rm -rf $(OTLP_OUTPUT_DIR)/*/ $(OTLPSLIM_OUTPUT_DIR)/*/

.PHONY: go-mod-tidy
Expand Down

0 comments on commit 59b7c9e

Please sign in to comment.