-
Notifications
You must be signed in to change notification settings - Fork 112
/
Makefile
236 lines (190 loc) · 7.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
include common.mk
# List of runtimes to build.
RUNTIMES := tests/runtimes/simple-keyvalue \
tests/runtimes/simple-keymanager \
tests/runtimes/simple-rofl
# Set all target as the default target.
all: build
@$(ECHO) "$(CYAN)*** Everything built successfully!$(OFF)"
# Build.
build-targets := build-tools build-rust build-runtimes build-go
build-tools:
@$(ECHO) "$(MAGENTA)*** Building Rust tools...$(OFF)"
@CARGO_TARGET_DIR=target/default cargo install --locked --path tools
# NOTE: We explictly set CARGO_TARGET_DIR as a workaround to avoid
# recompilations in newer cargo nightly builds.
# See https://github.com/oasisprotocol/oasis-core/pull/2673 for details.
build-runtimes:
@CARGO_TARGET_ROOT=$(shell pwd)/target && for e in $(RUNTIMES); do \
$(ECHO) "$(MAGENTA)*** Building runtime: $$e...$(OFF)"; \
(cd $$e && \
CARGO_TARGET_DIR=$${CARGO_TARGET_ROOT}/sgx cargo build --release --target x86_64-fortanix-unknown-sgx && \
CARGO_TARGET_DIR=$${CARGO_TARGET_ROOT}/default cargo build --release $(OASIS_RUNTIME_NONSGX_FLAGS) && \
CARGO_TARGET_DIR=$${CARGO_TARGET_ROOT}/sgx cargo elf2sgxs --release \
) || exit 1; \
done
build-rust:
@$(ECHO) "$(MAGENTA)*** Building Rust libraries and runtime loader...$(OFF)"
@CARGO_TARGET_DIR=target/default cargo build --release
build-go:
@$(MAKE) -C go build
build: $(build-targets)
build-helpers-go:
@$(MAKE) -C go build-helpers
build-helpers: build-helpers-go
build-go-generate:
@$(MAKE) -C go generate
# Synchronize source Markdown documentation.
update-docs: build-go
@$(MAKE) -C docs update
# Format code.
fmt-targets := fmt-rust fmt-go
fmt-rust:
@$(ECHO) "$(CYAN)*** Running cargo fmt... $(OFF)"
@cargo fmt
fmt-go:
@$(MAKE) -C go fmt
fmt: $(fmt-targets)
# Lint code, commits and documentation.
lint-targets := lint-rust lint-go lint-git lint-md lint-changelog lint-docs lint-go-mod-tidy
CARGO_CLIPPY_FLAGS := -D warnings \
-A clippy::upper-case-acronyms \
-A clippy::borrowed-box \
-A clippy::ptr-arg \
-A clippy::large_enum_variant \
-A clippy::field-reassign-with-default
lint-rust:
@$(ECHO) "$(CYAN)*** Running cargo clippy linters...$(OFF)"
@cargo clippy -- $(CARGO_CLIPPY_FLAGS)
@cargo clippy --features debug-mock-sgx -- $(CARGO_CLIPPY_FLAGS)
@cargo clippy --features tdx -- $(CARGO_CLIPPY_FLAGS)
lint-go:
@$(MAKE) -C go lint
lint-git:
@$(CHECK_GITLINT)
lint-md:
@npx markdownlint-cli@$(MARKDOWNLINT_CLI_VERSION) '**/*.md' --ignore .changelog/
lint-changelog:
@$(CHECK_CHANGELOG_FRAGMENTS)
# Check whether docs are synced with source code.
lint-docs:
@$(MAKE) -C docs check
lint-go-mod-tidy:
@$(MAKE) -C go lint-mod-tidy
lint: $(lint-targets)
# Test.
test-unit-targets := test-unit-rust test-unit-go
test-targets := test-unit test-e2e
test-unit-rust: build-helpers
@$(ECHO) "$(CYAN)*** Running Rust unit tests...$(OFF)"
@export OASIS_STORAGE_PROTOCOL_SERVER_BINARY=$(realpath go/$(GO_TEST_HELPER_MKVS_PATH)) && \
unset OASIS_UNSAFE_ALLOW_DEBUG_ENCLAVES && \
CARGO_TARGET_DIR=target/default cargo test
test-unit-go:
@$(MAKE) -C go test
test-unit: $(test-unit-targets)
test-e2e:
@$(ECHO) "$(CYAN)*** Running E2E tests...$(OFF)"
@.buildkite/scripts/test_e2e.sh
test: $(test-targets)
# Clean.
clean-targets := clean-runtimes clean-rust clean-go
clean-runtimes:
@$(ECHO) "$(CYAN)*** Cleaning up runtimes...$(OFF)"
@CARGO_TARGET_ROOT=$(shell pwd)/target && for e in $(RUNTIMES); do \
(cd $$e && \
CARGO_TARGET_DIR=$${CARGO_TARGET_ROOT}/default cargo clean && \
CARGO_TARGET_DIR=$${CARGO_TARGET_ROOT}/sgx cargo clean) || exit 1; \
done
clean-rust:
@$(ECHO) "$(CYAN)*** Cleaning up Rust...$(OFF)"
@CARGO_TARGET_DIR=target/default cargo clean
clean-go:
@$(MAKE) -C go clean
clean: $(clean-targets)
# Fetch all the latest changes (including tags) from the canonical upstream git
# repository.
fetch-git:
@$(ECHO) "Fetching the latest changes (including tags) from $(GIT_ORIGIN_REMOTE) remote..."
@git fetch $(GIT_ORIGIN_REMOTE) --tags
# Private target for bumping project's version using the Punch tool.
# NOTE: It should not be invoked directly.
_version-bump: fetch-git
@$(ENSURE_VALID_RELEASE_BRANCH_NAME)
@$(PUNCH_BUMP_VERSION)
@git add $(PUNCH_VERSION_FILE)
# Private target for assembling the Change Log.
# NOTE: It should not be invoked directly.
_changelog:
@$(ECHO) "$(CYAN)*** Generating Change Log for version $(PUNCH_VERSION)...$(OFF)"
@$(BUILD_CHANGELOG)
@$(ECHO) "Next, review the staged changes, commit them and make a pull request."
@$(WARN_BREAKING_CHANGES)
# Assemble Change Log.
# NOTE: We need to call Make recursively since _version-bump target updates
# Punch's version and hence we need Make to re-evaluate the PUNCH_VERSION
# variable.
changelog: _version-bump
@$(MAKE) --no-print-directory _changelog
# Tag the next release.
release-tag: fetch-git
@$(ECHO) "Checking if we can tag version $(PUNCH_VERSION) as the next release..."
@$(ENSURE_VALID_RELEASE_BRANCH_NAME)
@$(ENSURE_RELEASE_TAG_DOES_NOT_EXIST)
@$(ENSURE_NO_CHANGELOG_FRAGMENTS)
@$(ENSURE_NEXT_RELEASE_IN_CHANGELOG)
@$(ECHO) "All checks have passed. Proceeding with tagging the $(GIT_ORIGIN_REMOTE)/$(RELEASE_BRANCH)'s HEAD with tags:\n- $(RELEASE_TAG)\n- $(RELEASE_TAG_GO)"
@$(CONFIRM_ACTION)
@$(ECHO) "If this appears to be stuck, you might need to touch your security key for GPG sign operation."
@git tag --sign --message="Version $(PUNCH_VERSION)" $(RELEASE_TAG) $(GIT_ORIGIN_REMOTE)/$(RELEASE_BRANCH)
@$(ECHO) "If this appears to be stuck, you might need to touch your security key for GPG sign operation."
@git tag --sign --message="Version $(PUNCH_VERSION)" $(RELEASE_TAG_GO) $(GIT_ORIGIN_REMOTE)/$(RELEASE_BRANCH)
@git push $(GIT_ORIGIN_REMOTE) $(RELEASE_TAG) $(RELEASE_TAG_GO)
@$(ECHO) "$(CYAN)*** The following tags have been successfully pushed to $(GIT_ORIGIN_REMOTE) remote:\n- $(RELEASE_TAG)\n- $(RELEASE_TAG_GO)$(OFF)"
# Create and push a stable branch for the current release.
release-stable-branch: fetch-git
@$(ECHO) "Checking if we can create a stable release branch for version $(PUNCH_VERSION)...$(OFF)"
@$(ENSURE_VALID_STABLE_BRANCH)
@$(ENSURE_RELEASE_TAG_EXISTS)
@$(ENSURE_STABLE_BRANCH_DOES_NOT_EXIST)
@$(ECHO) "All checks have passed. Proceeding with creating the '$(STABLE_BRANCH)' branch on $(GIT_ORIGIN_REMOTE) remote."
@$(CONFIRM_ACTION)
@git branch $(STABLE_BRANCH) $(RELEASE_TAG)
@git push $(GIT_ORIGIN_REMOTE) $(STABLE_BRANCH)
@$(ECHO) "$(CYAN)*** Branch '$(STABLE_BRANCH)' has been sucessfully pushed to $(GIT_ORIGIN_REMOTE) remote.$(OFF)"
# Build and publish the next release.
release-build:
@$(ENSURE_VALID_RELEASE_BRANCH_NAME)
ifeq ($(OASIS_CORE_REAL_RELEASE), true)
@$(ENSURE_GIT_VERSION_EQUALS_PUNCH_VERSION)
endif
@$(ECHO) "$(CYAN)*** Building release version of oasis-core-runtime-loader...$(OFF)"
@CARGO_TARGET_DIR=target/default cargo build -p oasis-core-runtime-loader --release
@cp target/default/release/oasis-core-runtime-loader .
@$(ECHO) "$(CYAN)*** Creating release for version $(PUNCH_VERSION)...$(OFF)"
@goreleaser $(GORELEASER_ARGS)
@rm oasis-core-runtime-loader
# Develop in a Docker container.
docker-shell:
@docker run -t -i --rm \
--name oasis-core \
--security-opt apparmor:unconfined \
--security-opt seccomp=unconfined \
-v $(shell pwd):/code \
-w /code \
ghcr.io/oasisprotocol/oasis-core-dev:master \
bash
# List of targets that are not actual files.
.PHONY: \
all \
$(build-targets) build \
build-helpers-go build-helpers build-go-generate \
update-docs \
$(fmt-targets) fmt \
$(lint-targets) lint \
$(test-unit-targets) $(test-targets) test \
$(clean-targets) clean \
fetch-git \
_version-bump _changelog changelog \
release-tag release-stable-branch release-build \
docker-shell