-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved blaze source code to cirss/blaze repo and reorganized.
- Loading branch information
Timothy McPhillips
committed
Mar 16, 2021
1 parent
39ba907
commit 0fcde9c
Showing
105 changed files
with
398 additions
and
5,303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pkg | ||
bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## | ||
## # Targets for running the service provided by this REPRO locally | ||
## | ||
|
||
# Define target aliases available only outside a running REPRO | ||
ifndef IN_RUNNING_REPRO | ||
|
||
start-service: ## Run the service provided by this REPRO locally | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_SERVICE_DIR} run' | ||
|
||
else | ||
|
||
start-service: | ||
@echo | ||
@echo "Error: The start-service target is not available in a running REPRO." | ||
@echo | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
## | ||
## # Targets for building, testing, and install custom code in this REPRO. | ||
## # Targets for building and testing custom code in this REPRO. | ||
## | ||
|
||
clean-code: ## Delete artifacts from previous builds. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_CODE_DIR} clean' | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_DIR} -f Makefile-go clean' | ||
|
||
build-code: ## Build custom code. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_CODE_DIR} build' | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_DIR} -f Makefile-go build' | ||
|
||
test-code: ## Run tests on custom code. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_CODE_DIR} test' | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_DIR} -f Makefile-go test' | ||
|
||
install-code: ## Install custom code. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_CODE_DIR} install' | ||
install-code: ## Install built artifacts in REPRO. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_DIR} -f Makefile-go install' | ||
|
||
package-code: ## Package custom artifacts for distribution. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_CODE_DIR} package' | ||
package-code: # Package custom artifacts for distribution. | ||
$(RUN_IN_REPRO) 'make -C ${REPRO_DIR} -f Makefile-go package' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.