-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create separate builds for CentOS7 (+fips) #9176
Conversation
059a13e
to
1eea931
Compare
1eea931
to
03d08c3
Compare
docsbox: | ||
if ! docker inspect --type=image $(DOCSBOX) 2>&1 >/dev/null; then docker pull $(DOCSBOX) || true; fi | ||
|
||
.PHONY: test-docs | ||
test-docs: DOCS_VERSION := $(shell grep -E ^VERSION $(MAKEFILE_ROOT_DIR)/Makefile | cut -d= -f2 | cut -d. -f1-2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has always failed and emitted a warning because MAKEFILE_ROOT_DIR
was never defined:
grep: /Makefile: No such file or directory
As a result, the container would just mount src/content
and run docs checks against all versions.
With this change, we get the same behavior that we've always had, without the pesky grep warning.
0e6cc2f
to
ffa69bc
Compare
b527d2a
to
fed012a
Compare
Add new buildboxes for centos7 and centos7-fips. For now, we will continue to support both CentOS 6 and 7. Eventually we will drop support for CentOS 6, and the only supported CentOS builds will be these new CentOS 7 builds. Fixes #9028
fed012a
to
e922d0a
Compare
e922d0a
to
6d1bf45
Compare
Add new buildboxes for centos7 and centos7-fips.
For now, we will continue to support both CentOS 6 and 7.
Eventually we will drop support for CentOS 6, and the only
supported CentOS builds will be these new CentOS 7 builds.
Additionally, this change makes build.assets/Makefile the
source of truth for which Go/Rust versions we use to compile,
creating a few less places that need to be manually updated
when we wish to bump versions.
Fixes #9028