From 2baab3cc1dfb130738052bfa9bff1637e4348352 Mon Sep 17 00:00:00 2001 From: Doug Anderson444 Date: Mon, 11 Nov 2024 10:53:58 -0400 Subject: [PATCH] add full matrix targets build all targets to test the web and getrandom addition --- .github/workflows/rust.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8fd5a50..371cf25 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -109,25 +109,26 @@ jobs: fail-fast: true matrix: include: - # - os: macos-latest - # TARGET: aarch64-apple-darwin + - os: macos-latest + TARGET: aarch64-apple-darwin # apple x86_64 - # - os: macos-latest - # TARGET: x86_64-apple-darwin + - os: macos-latest + TARGET: x86_64-apple-darwin - os: ubuntu-latest TARGET: aarch64-unknown-linux-gnu + # wasmtime cannot be built on armv7 as it's 32-bit # - os: ubuntu-latest # TARGET: armv7-unknown-linux-gnueabihf - os: ubuntu-latest TARGET: x86_64-unknown-linux-gnu - # - os: windows-latest - # TARGET: x86_64-pc-windows-msvc - # EXTENSION: .exe + - os: windows-latest + TARGET: x86_64-pc-windows-msvc + EXTENSION: .exe steps: - name: Building ${{ matrix.TARGET }}