generated from falcosecurity/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
- Loading branch information
Showing
4 changed files
with
30 additions
and
11 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 @@ | ||
event-generator | ||
dist/ |
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,24 @@ | ||
SHELL=/bin/bash -o pipefail | ||
|
||
GO ?= go | ||
|
||
TEST_FLAGS ?= -v -race | ||
|
||
main ?= . | ||
output ?= event-generator | ||
|
||
.PHONY: build | ||
build: clean ${output} | ||
|
||
.PHONY: ${output} | ||
${output}: | ||
$(GO) build -o $@ ${main} | ||
|
||
.PHONY: clean | ||
clean: | ||
$(RM) -R ${output} | ||
|
||
.PHONY: test | ||
test: | ||
$(GO) vet ./... | ||
$(GO) test ${TEST_FLAGS} ./... |
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,12 +1,2 @@ | ||
|
||
> Acts as a template for new repositories | ||
## Workflow | ||
|
||
1. Above the file list, click **Use this template** button. | ||
2. Type a name for your repository, and an optional description. | ||
3. Click **Create repository from template**. | ||
4. Edit the README.md file. | ||
5. Edit the OWNERS file adding/removing people for the specific project. | ||
6. Open an issue into [test-infra](https://github.com/falcosecurity/test-infra) to notify maintainers to enable Prow on the specific project | ||
7. DO NOT edit the LICENSE file which we'll be already in place | ||
# event-generator |
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,3 @@ | ||
module github.com/falcosecurity/event-generator | ||
|
||
go 1.14 |