Skip to content

Commit f5b01d3

Browse files
committed
Fix Envoy build by initializing Git repository
1 parent 9adcd20 commit f5b01d3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

projects/envoyproxy.io/package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,16 @@ build:
1212
ninja-build.org: '*'
1313
llvm.org: '*'
1414
python.org: '*'
15+
git-scm.org: '*'
1516
script:
1617
- |
18+
# Initialize Git repo as Bazel requires git for workspace status
19+
git init
20+
git config --global user.email "[email protected]"
21+
git config --global user.name "pkgx build"
22+
git add .
23+
git commit -m "Initialize repository"
24+
1725
bazel build \
1826
--compilation_mode=opt \
1927
--curses=no \

0 commit comments

Comments
 (0)