From e936cc8de4a03e9a791ef44a9bd36b2d8e70a244 Mon Sep 17 00:00:00 2001 From: "Ryan.K" Date: Wed, 17 Jan 2024 11:48:46 +0800 Subject: [PATCH 1/2] fixed matrix --- .github/workflows/auto-release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index a3788b6d2..e73d06d1d 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -112,7 +112,6 @@ jobs: - x86_64 platform: - musl - compiler: [ gcc-latest, g++-latest ] steps: - uses: actions/checkout@v3 with: From 334cd1bfb81b7930eb4b9a2c612b863ec4c64074 Mon Sep 17 00:00:00 2001 From: "Ryan.K" Date: Wed, 17 Jan 2024 12:03:13 +0800 Subject: [PATCH 2/2] soft link compiler --- .github/workflows/auto-release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index e73d06d1d..599081a00 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -130,11 +130,9 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - - name: Install compiler - id: install_cc - uses: rlalik/setup-cpp-compiler@master - with: - compiler: g++-latest + - name: alias compiler + run: | + sudo ln -s /bin/g++ /bin/musl-g++ - name: Setup rust toolchain run: |