From d61d1de5fe3e28b28dba4948936c87a6bdafc206 Mon Sep 17 00:00:00 2001 From: Gabriele Picco Date: Thu, 22 Feb 2024 12:09:32 +0100 Subject: [PATCH] :construction_worker: Publish packages for 0.0.1 --- .github/workflows/publish-packages.yml | 64 +++++++++++++------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 95290a38..f31708d7 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -13,42 +13,42 @@ jobs: fail-fast: false matrix: build: - - { - NAME: linux-x64-glibc, - OS: ubuntu-20.04, - TOOLCHAIN: stable, - TARGET: x86_64-unknown-linux-gnu, - } # - { -# NAME: linux-arm64-glibc, +# NAME: linux-x64-glibc, # OS: ubuntu-20.04, # TOOLCHAIN: stable, -# TARGET: aarch64-unknown-linux-gnu, -# } -# - { -# NAME: win32-x64-msvc, -# OS: windows-2022, -# TOOLCHAIN: stable, -# TARGET: x86_64-pc-windows-msvc, -# } -# - { -# NAME: win32-arm64-msvc, -# OS: windows-2022, -# TOOLCHAIN: stable, -# TARGET: aarch64-pc-windows-msvc, -# } -# - { -# NAME: darwin-x64, -# OS: macos-11, -# TOOLCHAIN: stable, -# TARGET: x86_64-apple-darwin, -# } -# - { -# NAME: darwin-arm64, -# OS: macos-11, -# TOOLCHAIN: stable, -# TARGET: aarch64-apple-darwin, +# TARGET: x86_64-unknown-linux-gnu, # } + - { + NAME: linux-arm64-glibc, + OS: ubuntu-20.04, + TOOLCHAIN: stable, + TARGET: aarch64-unknown-linux-gnu, + } + - { + NAME: win32-x64-msvc, + OS: windows-2022, + TOOLCHAIN: stable, + TARGET: x86_64-pc-windows-msvc, + } + - { + NAME: win32-arm64-msvc, + OS: windows-2022, + TOOLCHAIN: stable, + TARGET: aarch64-pc-windows-msvc, + } + - { + NAME: darwin-x64, + OS: macos-11, + TOOLCHAIN: stable, + TARGET: x86_64-apple-darwin, + } + - { + NAME: darwin-arm64, + OS: macos-11, + TOOLCHAIN: stable, + TARGET: aarch64-apple-darwin, + } steps: - name: Checkout uses: actions/checkout@v4