Skip to content

Commit 6c01b2d

Browse files
authored
Merge pull request #1435 from merico-dev/fix-e2e-make-not-found
fix: e2e build stage not found make command
2 parents f5d7629 + f285500 commit 6c01b2d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/e2e-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ jobs:
5050
go-version: ${{ matrix.go }}
5151
cache: true
5252
- name: Build
53-
run: make build -j8
53+
run: |
54+
sudo apt-get install gcc automake autoconf libtool make -y
55+
make build -j8
5456
- name: Install AWS CLI v2
5557
run: |
5658
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o /tmp/awscliv2.zip

0 commit comments

Comments
 (0)