From bc039aa483410318170a542f6cf120b7d3391931 Mon Sep 17 00:00:00 2001 From: Yue Yang Date: Mon, 25 Mar 2024 14:35:53 +0800 Subject: [PATCH] fix: install gcc (#261) --- .github/workflows/release_latest.yml | 2 +- .github/workflows/release_tag.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_latest.yml b/.github/workflows/release_latest.yml index 104e9cd4..44607e86 100644 --- a/.github/workflows/release_latest.yml +++ b/.github/workflows/release_latest.yml @@ -23,7 +23,7 @@ jobs: - name: Prepare tools run: | - dnf install -y make python3 + dnf install -y make gcc python3 - name: Build binary and related tools run: make build diff --git a/.github/workflows/release_tag.yml b/.github/workflows/release_tag.yml index 54ac64f2..9bd82a8a 100644 --- a/.github/workflows/release_tag.yml +++ b/.github/workflows/release_tag.yml @@ -22,7 +22,7 @@ jobs: - name: Prepare tools run: | - dnf install -y make python3 + dnf install -y make gcc python3 - name: Build binary and related tools run: make build