1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-03 14:13:18 +02:00

Add CI MacOS Arm64 support (#356)

* Add CI MacOS Arm64 support

* Update CMAKE_INSTALL_PREFIX

* Rename aarch64 to arm64 for macos github workflows

* Add comment after macos-latest
This commit is contained in:
Mykola Hohsadze
2024-08-29 11:48:33 +03:00
committed by GitHub
parent 881690080d
commit c5fc491337
2 changed files with 80 additions and 0 deletions

36
.github/workflows/arm64_macos_bazel.yml vendored Normal file
View File

@ -0,0 +1,36 @@
# ref: https://github.com/actions/runner-images
name: Arm64 MacOS Bazel
on:
push:
pull_request:
schedule:
# min hours day(month) month day(week)
- cron: '0 0 7,22 * *'
jobs:
# Building using the github runner environement directly.
bazel:
runs-on: macos-latest # Using M1 processors, ref: https://github.com/actions/runner-images
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Bazel
run: |
brew update
brew unlink bazelisk
brew install bazel
- name: Check Bazel
run: bazel version
- name: Build
run: >
bazel build
-c opt
--subcommands=true
...
- name: Test
run: >
bazel test
-c opt
--test_output=errors
...