From 637a3949dd675eef5f2c6669c4f483c9049a6b48 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Thu, 4 Mar 2021 14:24:21 -0500 Subject: [PATCH] ci: Test macOS ARM and Linux armv6 (#430) --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfe27c55..1bd7ea46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,6 +94,13 @@ jobs: cross: false, rust: stable, } + # Disabled, unfortunately. + # - { + # os: "macOS-11.0", + # target: "x86_64-apple-darwin", + # cross: false, + # rust: stable, + # } - { os: "windows-2019", target: "i686-pc-windows-msvc", @@ -129,6 +136,14 @@ jobs: rust: stable, } + # armv6 + - { + os: "ubuntu-18.04", + target: "arm-unknown-linux-gnueabihf", + cross: true, + rust: stable, + } + # PowerPC 64 LE - { os: "ubuntu-18.04", @@ -137,6 +152,14 @@ jobs: rust: stable, } + # macOS ARM + - { + os: "macOS-latest", + target: "aarch64-apple-darwin", + cross: true, + rust: stable, + } + steps: - uses: actions/checkout@v2