Skip to content

Commit

Permalink
use own .PHONY directive to avoid merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
dklimpel committed Jul 6, 2024
1 parent f0017fe commit ef90310
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ VENV := $(shell echo $${VIRTUAL_ENV-.venv})
PYTHON := $(VENV)/bin/python
DOCS_DEPS := $(VENV)/.docs.dependencies

.PHONY: all build install test release bench fmt lint vet test-int-all gen centos7 rockylinux9 wheezy trusty alpine3 arch test-int32 centos7-32 rockylinux9-32 wheezy-32 trusty-32 alpine3-32 arch-32
.PHONY: all build install test release bench fmt lint vet test-int-all gen centos7 wheezy trusty alpine3 arch test-int32 centos7-32 wheezy-32 trusty-32 alpine3-32 arch-32

all: test-short-all test-int-all dgoss-sha256

Expand Down Expand Up @@ -105,6 +105,7 @@ test-int-all: test-int-32 test-int-64
centos7-32: build
$(info INFO: Starting build $@)
cd integration-tests/ && ./test.sh centos7 386
.PHONY: rockylinux9-32
rockylinux9-32: build
$(info INFO: Starting build $@)
cd integration-tests/ && ./test.sh rockylinux9 386
Expand All @@ -123,6 +124,7 @@ arch-32: build
centos7: build
$(info INFO: Starting build $@)
cd integration-tests/ && ./test.sh centos7 amd64
.PHONY: rockylinux9
rockylinux9: build
$(info INFO: Starting build $@)
cd integration-tests/ && ./test.sh rockylinux9 amd64
Expand Down

0 comments on commit ef90310

Please sign in to comment.