From b49b3d350ff168f2fe22c28a92661a60378c964d Mon Sep 17 00:00:00 2001 From: Junho Choi Date: Tue, 2 Jul 2024 06:35:52 +0900 Subject: [PATCH] ci: disable i386-unknown-linux-gnu Disable i386 linux build for ubuntu-24.04, due to https://github.com/actions/runner-images/issues/9977 --- .github/workflows/stable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index 115b3656f5..d7e450f247 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -175,7 +175,8 @@ jobs: runs-on: ubuntu-24.04 strategy: matrix: - target: ["aarch64-unknown-linux-gnu","armv7-unknown-linux-gnueabihf","i686-unknown-linux-gnu"] + # "i686-unknown-linux-gnu" is disabled in ubuntu24.04 runner + target: ["aarch64-unknown-linux-gnu","armv7-unknown-linux-gnueabihf"] # Only run on "pull_request" event for external PRs. This is to avoid # duplicate builds for PRs created from internal branches. if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository