From 892ec391d4347a39d10a55ffa6a218865a5fcaae Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Wed, 24 Jan 2024 11:22:18 +0200 Subject: [PATCH] * try to fix the i686-linux and arm64-linux builds (#99) --- .github/workflows/binaries.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 722dcea..a7d6da0 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -18,22 +18,27 @@ jobs: triple: x86_64-linux-musl name: linux cpu: amd64 + nimble_cpu: amd64 - os: linux triple: i686-linux-musl name: linux cpu: i686 + nimble_cpu: i386 - os: linux triple: aarch64-linux-musl name: linux cpu: arm64 + nimble_cpu: aarch64 - os: macosx triple: x86_64-apple-darwin14 name: macosx cpu: amd64 + nimble_cpu: amd64 - os: windows triple: x86_64-w64-mingw32 name: windows cpu: amd64 + nimble_cpu: amd64 include: - target: os: linux @@ -58,7 +63,7 @@ jobs: uses: nim-lang/nimble/.github/actions/install_nimble@master with: os: ${{ matrix.target.name }} - cpu: ${{ matrix.target.cpu }} + cpu: ${{ matrix.target.nimble_cpu }} - name: Restore nimble dependencies from cache id: nimble_deps