summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-02-19 01:12:13 -0500
committerGitHub <noreply@github.com>2023-02-19 01:12:13 -0500
commit2a1c4104fd5c5279b391c02708295839faa351ec (patch)
treeea1c724420c371f74150fac351abcabd6fa5e698 /.github
parentf89b243589b5d0e0a3dfe75337a66fa1091d0434 (diff)
other: promote macOS aarch64 to official support (#1025)
Since I have a macOS M1 laptop to test on now, I think it's a good time to bump it to be officially supported, especially since it's going to be the main macOS platform for the foreseeable feature.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_releases.yml2
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/coverage.yml1
3 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build_releases.yml b/.github/workflows/build_releases.yml
index cecee0f0..1851f239 100644
--- a/.github/workflows/build_releases.yml
+++ b/.github/workflows/build_releases.yml
@@ -77,7 +77,7 @@ jobs:
cross: true,
}
- # macOS (x64)
+ # macOS (x64), M1 is built via CirrusCI.
- { os: "macos-12", target: "x86_64-apple-darwin", cross: false }
# Windows (x64, x86)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 84a87dbf..f55b56e4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -52,6 +52,8 @@ jobs:
do_not_skip: '["workflow_dispatch", "push"]'
# Runs rustfmt + tests + clippy on the main supported platforms.
+ #
+ # Note that m1 macOS is tested via CirrusCI.
supported:
needs: pre-job
runs-on: ${{ matrix.info.os }}
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 4f30fca8..514afd6f 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -17,6 +17,7 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'ClementTsang/bottom' }}
+# TODO: Maybe add this for more than just Linux.
jobs:
pre-job:
runs-on: ubuntu-latest