Skip to content

Commit 1d1fc62

Browse files
committed
fix: e2e build stage not found make command
Signed-off-by: KeHaoKH <hao.ke@merico.dev>
1 parent e95ebc7 commit 1d1fc62

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+
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)