Skip to content

Commit

Permalink
Ensure make rules are serially executed
Browse files Browse the repository at this point in the history
Also add note to avoid running make in parallel. The ordering
throughout is currently dependent on serial execution.
  • Loading branch information
allenbaron committed Oct 26, 2023
1 parent fafbd6b commit d5cfbe5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ SHELL := bash
.DELETE_ON_ERROR:
.SUFFIXES:
.SECONDARY:
.NOTPARALLEL:

DO = src/ontology/doid
EDIT = src/ontology/doid-edit.owl
Expand All @@ -20,6 +21,8 @@ HD = src/ontology/HumanDO
# Set the ROBOT version to use
ROBOT_VRS = 1.9.5

# ***NEVER run make commands in parallel (do NOT use the -j flag)***

# to make a release, use `make release`
# to update imports, use `make imports`
# to run QC tests on doid-edit.owl, use `make test`
Expand Down

0 comments on commit d5cfbe5

Please sign in to comment.