Skip to content

Commit

Permalink
Add aarch64 ubuntu bot
Browse files Browse the repository at this point in the history
  • Loading branch information
gchatelet authored and Mizux committed Aug 30, 2023
1 parent be65a3d commit 5d97a14
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/aarch64_linux_bazel.yml
Original file line number Diff line number Diff line change
@@ -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 //...

0 comments on commit 5d97a14

Please sign in to comment.