diff --git a/.github/workflows/core-build-and-draft.yml b/.github/workflows/core-build-and-draft.yml index 34bab6b9..27e81b0d 100644 --- a/.github/workflows/core-build-and-draft.yml +++ b/.github/workflows/core-build-and-draft.yml @@ -35,6 +35,18 @@ jobs: arch: "x86_64" postfix: "" cross: false + - platform: "self-hosted" + target: "aarch64-unknown-linux-gnu" + os: "linux" + arch: "aarch64" + postfix: "" + cross: false + - platform: "macos-latest" + target: "x86_64-apple-darwin" + os: "macos" + arch: "x86_64" + postfix: "" + cross: false runs-on: ${{ matrix.platform }} steps: diff --git a/.github/workflows/core-cargo-test.yml b/.github/workflows/core-cargo-test.yml index 7f637592..8bc06997 100644 --- a/.github/workflows/core-cargo-test.yml +++ b/.github/workflows/core-cargo-test.yml @@ -16,6 +16,8 @@ jobs: target: x86_64-pc-windows-msvc - platform: ubuntu-latest target: x86_64-unknown-linux-gnu + - platform: macos-latest + target: x86_64-apple-darwin runs-on: ${{ matrix.platform }}