Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/cpu_features.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMizux Seiha <mizux.dev@gmail.com>2022-03-09 21:11:21 +0300
committerCorentin Le Molgat <corentinl@google.com>2022-11-04 13:41:03 +0300
commitd320d44fae19304d1b9aa2584e14952fb204aa86 (patch)
treed6396ebb08b5c138257d5bca1b9973a7d8f2855a
parentb7bc447203256fce26e6140372ea955affd4849e (diff)
ci: Add amd64 MacOS Bazel jobbazel/macos
-rw-r--r--.github/workflows/amd64_macos_bazel.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/amd64_macos_bazel.yml b/.github/workflows/amd64_macos_bazel.yml
new file mode 100644
index 0000000..3113c57
--- /dev/null
+++ b/.github/workflows/amd64_macos_bazel.yml
@@ -0,0 +1,23 @@
+name: amd64 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
+ steps:
+ - name: Check out repository code
+ uses: actions/checkout@v2
+ - name: Install Bazel
+ run: |
+ brew update
+ #brew install bazel
+ bazel --version
+ - name: Test
+ run: bazel test -s --verbose_failures //...