Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45f491b

Browse files
authoredApr 20, 2023
Remove vendor dir (operator-framework#1085)
Removes the vendor directory from source control and attempts to cache the vendor dir when github actions are run. Also removes a couple of Dockerfiles which are no longer used and relied on the vendor directory. Signed-off-by: dtfranz <[email protected]>
1 parent 0aebc3c commit 45f491b

File tree

6,458 files changed

+16
-2116555
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,458 files changed

+16
-2116555
lines changed
 

‎.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
16-
- uses: actions/setup-go@v3
16+
- uses: actions/setup-go@v4
1717
with:
1818
go-version-file: "go.mod"
1919
- run: make build

‎.github/workflows/codecov.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ files=""
3030
save_to=""
3131
direct_file_upload=""
3232
cacert="$CODECOV_CA_BUNDLE"
33-
gcov_ignore="-not -path './bower_components/**' -not -path './node_modules/**' -not -path './vendor/**'"
33+
gcov_ignore="-not -path './bower_components/**' -not -path './node_modules/**'"
3434
gcov_include=""
3535

3636
ft_gcov="1"
@@ -1661,7 +1661,6 @@ then
16611661
# skip empty lines, comments, and brackets
16621662
cd "$git_root" && \
16631663
find . -type f \
1664-
-not -path '*/vendor/*' \
16651664
-not -path '*/caches/*' \
16661665
-name '*.go' \
16671666
-exec \
@@ -1697,7 +1696,6 @@ then
16971696
# skip empty lines, comments, and brackets
16981697
cd "$git_root" && \
16991698
find . -type f \
1700-
-not -path "*/vendor/*" \
17011699
-name '*.php' \
17021700
-exec \
17031701
grep -nIHE \

0 commit comments

Comments
 (0)