From 2d653b22cae79698f1e82aa466b9060848775836 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Wed, 7 Aug 2024 15:27:36 +0800 Subject: [PATCH] ci: Disable test for i686 unknown linux target (#286) --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f01735a..3b83afe7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: matrix: target: [ x86_64-unknown-linux-gnu, - i686-unknown-linux-gnu, +# i686-unknown-linux-gnu, aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabihf, riscv64gc-unknown-linux-gnu, @@ -81,8 +81,9 @@ jobs: include: - target: x86_64-unknown-linux-gnu os: ubuntu-latest - - target: i686-unknown-linux-gnu - os: ubuntu-latest +# Disable i686 tests until https://github.com/bytedance/monoio/issues/285 addressed. +# - target: i686-unknown-linux-gnu +# os: ubuntu-latest - target: aarch64-unknown-linux-gnu os: ubuntu-latest - target: armv7-unknown-linux-gnueabihf @@ -108,4 +109,4 @@ jobs: - target: i686-pc-windows-msvc os: windows-latest - target: i686-pc-windows-gnu - os: windows-latest \ No newline at end of file + os: windows-latest