-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
755d352
commit 1c9c7aa
Showing
2 changed files
with
17 additions
and
0 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
copythis.circleci/config/ | ||
copythis.circleci/config.yml | ||
.tmp/ |
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,16 @@ | ||
# Do not copy this Makefile to your project. | ||
# This Makefile is to help with maintenance and testing | ||
# of the stuff in copythis.circleci. | ||
|
||
# TD is the test directory. It should be in .gitignore. | ||
TD := ".tmp/test" | ||
TESTMAKE := make -C $(TD) | ||
|
||
# For now, test just invokes ci-config and ci-verify | ||
# and checks they exit successfully. | ||
.PHONY: test | ||
test: | ||
rm -rf $(TD); mkdir -p $(TD); cp copythis.circleci/Makefile $(TD)/ | ||
$(TESTMAKE) init | ||
$(TESTMAKE) ci-config | ||
$(TESTMAKE) ci-verify |