mirror of
https://github.com/google/cpu_features.git
synced 2025-04-27 23:22:31 +02:00
Add aarch64 ubuntu bot
This commit is contained in:
parent
be65a3d148
commit
5d97a14add
26
.github/workflows/aarch64_linux_bazel.yml
vendored
Normal file
26
.github/workflows/aarch64_linux_bazel.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: AArch64 Linux 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: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Bazel
|
||||||
|
run: |
|
||||||
|
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg
|
||||||
|
sudo mv bazel.gpg /etc/apt/trusted.gpg.d/
|
||||||
|
echo "deb [arch=arm64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install bazel
|
||||||
|
bazel --version
|
||||||
|
- name: Test
|
||||||
|
run: bazel test -s --verbose_failures //...
|
Loading…
x
Reference in New Issue
Block a user