Skip to content

build(deps): bump prost from 0.12.3 to 0.12.4 #38

build(deps): bump prost from 0.12.3 to 0.12.4

build(deps): bump prost from 0.12.3 to 0.12.4 #38

Workflow file for this run

name: Squid/bazel
on:
workflow_dispatch: # Allow manual runs.
pull_request:
branches: [ 'master' ]
push:
branches: [ 'master' ]
jobs:
bazel:
strategy:
fail-fast: false
matrix:
include:
- target: ubuntu-latest
name: Linux Ubuntu
name: Build (${{ matrix.name || matrix.target }})
runs-on: ${{ matrix.target }}
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v3
- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "~/.cache/bazel"
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'MODULE.bazel', 'Cargo.Bazel.lock') }}
restore-keys: |
${{ runner.os }}-bazel-
- name: Build Squid
run: bazel build //... --strip=always --compilation_mode opt
shell: bash
- name: Run tests
run: bazel test //... --strip=always --compilation_mode opt
shell: bash
- name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to docker.io
if: ${{ github.ref == 'refs/heads/master' }}
run: bazel run //squid:push --strip=always --compilation_mode opt
shell: bash