From 0233c4156f0b33a18807530bdbaf8892c56f9c66 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Tue, 30 Apr 2024 07:08:21 +0200 Subject: [PATCH] ci: temporarily deactivate non-working CI (#375) * ci: temporarily deactivate non-working CI pending https://github.com/nim-lang/Nim/issues/23547 and https://github.com/nim-lang/nightlies/pull/82 * remove macos from matrix include as well --- .github/workflows/ci.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e502f8df..5ebfbf80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: fail-fast: false max-parallel: 20 matrix: - nim_version: [version-1-6, version-2-0] # devel + nim_version: [version-1-6] # version-2-0 has a regression: https://github.com/nim-lang/Nim/issues/23547 rust_toolchain: [stable] # [beta, nightly] go_toolchain: [stable] target: @@ -38,21 +38,22 @@ jobs: TEST_LANG: c BACKEND: ASM - - os: macos - cpu: amd64 - TEST_LANG: c - BACKEND: NO_ASM - - os: macos - cpu: amd64 - TEST_LANG: c - BACKEND: ASM + # MacOS Github agents are now using ARM and we need Nim ARM nightlies: https://github.com/mratsim/constantine/issues/372 + # - os: macos + # cpu: amd64 + # TEST_LANG: c + # BACKEND: NO_ASM + # - os: macos + # cpu: amd64 + # TEST_LANG: c + # BACKEND: ASM include: - target: os: linux builder: ubuntu-latest - - target: - os: macos - builder: macos-latest + # - target: + # os: macos + # builder: macos-latest - target: os: windows builder: windows-latest