From a63116a2e01875b6f7897e2f4d5feff267c0393a Mon Sep 17 00:00:00 2001 From: kkew3 Date: Sat, 15 Feb 2025 17:13:33 +0800 Subject: [PATCH] Enable aarch64-unknown-linux-gnu platform in github workflow cicd Note that the performance issue might not be resolved yet. --- .github/workflows/cicd.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index bc37b66..0830469 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -152,12 +152,12 @@ jobs: fail-fast: false matrix: job: - # This should be re-enabled after issue #8 is resolved. See more at + # This is enabled because wall time check in unit tests has been + # removed. But the issue might not be resolved yet. See more at # https://github.com/kkew3/jieba.vim/issues/8. - # - # - target: aarch64-unknown-linux-gnu - # os: ubuntu-22.04 - # use-cross: true + - target: aarch64-unknown-linux-gnu + os: ubuntu-22.04 + use-cross: true - target: x86_64-unknown-linux-gnu os: ubuntu-22.04 use-cross: true