From 5d27f2510d6bdf135947bc5d67392778cdeb9b75 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Sat, 23 Sep 2023 09:49:46 +0300 Subject: [PATCH] wip Signed-off-by: Manos Pitsidianakis --- .gitea/workflows/builds.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/builds.yaml b/.gitea/workflows/builds.yaml index e80f9efa..6ea3ed02 100644 --- a/.gitea/workflows/builds.yaml +++ b/.gitea/workflows/builds.yaml @@ -26,16 +26,22 @@ jobs: strategy: fail-fast: false matrix: - build: [linux-amd64, ] + build: [linux-amd64, macos-latest] include: - build: linux-amd64 os: ubuntu-latest rust: stable artifact_name: 'meli-linux-amd64' target: x86_64-unknown-linux-gnu + - build: macos-latest + os: macos-latest + rust: stable + artifact_name: 'meli-darwin-aarch64' + target: aarch64-apple-darwin steps: - uses: actions/checkout@v2 - id: os-deps + if: ${{ matrix.os }} == 'ubuntu-latest' name: install OS dependencies run: | apt-get update