-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
36 lines (27 loc) · 1.98 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
GO=GO111MODULE=on go
GOBUILD=$(GO) build
all: build
build: bundled/pkged.go
$(GOBUILD) ./cli/gocomply_fedramp
bundled/pkged.go: pkger README.md
pkger -o bundled
.PHONY: pkger vendor
pkger:
ifeq ("$(wildcard $(GOPATH)/bin/pkger)","")
go get -u -v github.com/markbates/pkger/cmd/pkger
endif
ci-update-bundled-deps: ci-update-fedramp-templates ci-update-fedramp-catalogs
ci-update-fedramp-templates:
rm bundled/templates/FedRAMP-SSP-*-Baseline-Template.docx bundled/templates/FedRAMP-SSP-OSCAL-Template.xml
wget -P bundled/templates/ https://www.fedramp.gov/assets/resources/templates/FedRAMP-SSP-High-Baseline-Template.docx https://www.fedramp.gov/assets/resources/templates/FedRAMP-SSP-Moderate-Baseline-Template.docx https://www.fedramp.gov/assets/resources/templates/FedRAMP-SSP-Low-Baseline-Template.docx https://raw.githubusercontent.com/GSA/fedramp-automation/master/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml
XMLFORMAT=XMLLINT_INDENT=' ' xmllint --format --nsclean
ci-update-fedramp-catalogs:
rm bundled/catalogs/FedRAMP_*baseline-resolved-profile_catalog.xml
wget -P bundled/catalogs https://raw.githubusercontent.com/GSA/fedramp-automation/master/baselines/xml/FedRAMP_HIGH-baseline-resolved-profile_catalog.xml https://raw.githubusercontent.com/GSA/fedramp-automation/master/baselines/xml/FedRAMP_LOW-baseline-resolved-profile_catalog.xml https://raw.githubusercontent.com/GSA/fedramp-automation/master/baselines/xml/FedRAMP_MODERATE-baseline-resolved-profile_catalog.xml
$(XMLFORMAT) -o bundled/catalogs/FedRAMP_HIGH-baseline-resolved-profile_catalog.xml bundled/catalogs/FedRAMP_HIGH-baseline-resolved-profile_catalog.xml
$(XMLFORMAT) -o bundled/catalogs/FedRAMP_MODERATE-baseline-resolved-profile_catalog.xml bundled/catalogs/FedRAMP_MODERATE-baseline-resolved-profile_catalog.xml
$(XMLFORMAT) -o bundled/catalogs/FedRAMP_LOW-baseline-resolved-profile_catalog.xml bundled/catalogs/FedRAMP_LOW-baseline-resolved-profile_catalog.xml
vendor:
$(GO) mod tidy
$(GO) mod vendor
$(GO) mod verify