From 99b2c72e60e9a5b19d024acfa3c79ab90a57526d Mon Sep 17 00:00:00 2001 From: tildearrow Date: Wed, 17 Apr 2024 17:59:15 -0500 Subject: [PATCH] Revert "remove Windows and Linux from CI for now" This reverts commit eddbd16bd6282b369a3402ab4d7c4536090648d6. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ef3b55091..13ca442b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,14 @@ jobs: strategy: matrix: config: + - { name: 'Windows MSVC x86', os: windows-latest, compiler: msvc, arch: x86 } + - { name: 'Windows MSVC x86_64', os: windows-latest, compiler: msvc, arch: x86_64 } + #- { name: 'Windows MinGW x86', os: ubuntu-20.04, compiler: mingw, arch: x86 } + #- { name: 'Windows MinGW x86_64', os: ubuntu-20.04, compiler: mingw, arch: x86_64 } - { name: 'macOS x86_64', os: macos-latest, arch: x86_64 } - { name: 'macOS ARM', os: macos-latest, arch: arm64 } + - { name: 'Linux x86_64', os: ubuntu-20.04, arch: x86_64 } + #- { name: 'Linux ARM', os: ubuntu-18.04, arch: armhf } fail-fast: false name: ${{ matrix.config.name }}