Skip to content
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

chore: update build submodule & add support for codeowners #80

Merged
merged 3 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @yfodil
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-lint-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

# We could run 'make lint' but we prefer this action because it leaves
# 'annotations' (i.e. it comments on PRs to point out linter violations).
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-check-diff-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Check Diff
run: make check-diff
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Run Unit Tests
run: make -j2 test
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Deploying locally built provider package
run: make local-deploy
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-publish-artifacts-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Build Artifacts
run: make -j2 build.all
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "build"]
path = build
url = https://github.com/upbound/build
url = https://github.com/crossplane/build
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ GO_SUBDIRS += cmd internal apis
# ====================================================================================
# Setup Kubernetes tools

KIND_VERSION = v0.15.0
UP_VERSION = v0.14.0
KIND_VERSION = v0.23.0
UP_VERSION = v0.31.0
UP_CHANNEL = stable
UPTEST_VERSION = v0.2.1
UPTEST_VERSION = v0.12.0
-include build/makelib/k8s_tools.mk
CROSSPLANE_VERSION = 1.16.0

# ====================================================================================
# Setup Images
Expand Down Expand Up @@ -199,3 +200,6 @@ crossplane.help:
help-special: crossplane.help

.PHONY: crossplane.help help-special

vendor: modules.download
vendor.check: modules.check
Loading