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:45:31 +0300
commit0ecc1369b1b9807124b5a9e2cc622a517c1b8dc1 (patch)
tree21b2dff665642779154992304b1b521fcf33b44f
parentb7bc447203256fce26e6140372ea955affd4849e (diff)
ci: Add amd64 windows bazel jobbazel/windows
-rw-r--r--.github/workflows/amd64_windows_bazel.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/amd64_windows_bazel.yml b/.github/workflows/amd64_windows_bazel.yml
new file mode 100644
index 0000000..51837bc
--- /dev/null
+++ b/.github/workflows/amd64_windows_bazel.yml
@@ -0,0 +1,21 @@
+name: amd64 Windows 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.
+ msvc:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install Bazel
+ run: |
+ choco install bazel
+ bazel --version
+ - name: Test
+ run: bazel test -s --verbose_failures //...