-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (17 loc) · 905 Bytes
/
Makefile
File metadata and controls
23 lines (17 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: test
help: ## show this help
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%s\033[0m|%s\n", $$1, $$2}' \
| column -t -s '|'
test-bash-completion: ## test the bash-completion feature
devcontainer features test -f bash-completion -i mcr.microsoft.com/devcontainers/base:ubuntu .
test-project-sync: ## Sync the feature code to the test project
rm -rf test-project/.devcontainer/src
cp -r src test-project/.devcontainer/src
test-project-build: test-project-sync ## Build the test project
@echo "Building the test project..."
echo "" | devcontainer build --workspace-folder test-project | cat
test:
devcontainer features test --base-image mcr.microsoft.com/devcontainers/base:ubuntu
test-azure-cli-persistence:
devcontainer features test --features azure-cli-persistence --base-image mcr.microsoft.com/devcontainers/base:ubuntu