Skip to content

Update dependency ubuntu to v24 #50

Update dependency ubuntu to v24

Update dependency ubuntu to v24 #50

Workflow file for this run

name: ci
on:
# Trigger when a push is made to master.
push:
branches:
- master
# Trigger when a pull request is made against master.
pull_request:
branches:
- master
jobs:
local_build:
name: "x86 build and test"
runs-on: ubuntu-24.04
strategy:
matrix:
architecture: ["amd64", "aarch64", "armv7hf"]
# From https://github.com/marketplace/actions/setup-bazelisk
steps:
- uses: actions/checkout@v2
- uses: bazelbuild/setup-bazelisk@v1
- name: Mount bazel cache # Optional
uses: actions/cache@v2
with:
path: "~/.cache/bazel"
key: bazel
- run: bazel build //... --config=${{ matrix.architecture }}