aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/amd64_linux_bazel.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/amd64_linux_bazel.yml')
-rw-r--r--.github/workflows/amd64_linux_bazel.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/amd64_linux_bazel.yml b/.github/workflows/amd64_linux_bazel.yml
index 599faf5..fcb0ce4 100644
--- a/.github/workflows/amd64_linux_bazel.yml
+++ b/.github/workflows/amd64_linux_bazel.yml
@@ -13,14 +13,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
- uses: actions/checkout@v2
- - name: Install Bazel
+ uses: actions/checkout@v3
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v2
+ - name: Check docker
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=amd64] 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
+ docker info
+ docker buildx ls
+ - name: Build
+ run: make --directory=bazel/ci amd64_build
- name: Test
- run: bazel test -s --verbose_failures //...
+ run: make --directory=bazel/ci amd64_test