Skip to content

Commit

Permalink
fix(Makefile): 🐛 Adding dependencies to some targets
Browse files Browse the repository at this point in the history
Some Makefile targets were missing dependencies to the .abi-conda env which made them fail if the conda env was not setup.
  • Loading branch information
Dr0p42 committed Aug 1, 2024
1 parent 4bf93d3 commit 29c1193
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ conda-update-hash:
dep: dependencies
dependencies: .abi-conda $(CONDA_ENV_HASH)

conda-env-add:
conda-env-add: dep
conda run -p .abi-conda pip install $(package)

conda-env-update:
Expand Down Expand Up @@ -126,12 +126,12 @@ build.linux.x86_64:
docker build . -t abi -f Dockerfile.linux.x86_64 --platform linux/amd64

# CI/CD
ci-generate-schedulers:
ci-generate-schedulers: dep
@ conda run -p .abi-conda python .github/scripts/generate_schedulers.py

ci-run-scheduler:
ci-run-scheduler: dep
@ conda run -p .abi-conda python .github/scripts/run_scheduler.py $(scheduler)
# Validations

validate-config:
validate-config: dep
@ conda run -p .abi-conda python .github/scripts/validate_jsonschema_yaml.py config.schema.json config.yml

0 comments on commit 29c1193

Please sign in to comment.