Skip to content

Make reads and writes linearizable #12734

Make reads and writes linearizable

Make reads and writes linearizable #12734

Workflow file for this run

name: PR
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install bazelisk
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
mkdir -p "${GITHUB_WORKSPACE}/bin/"
mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
- name: Build
run: |
"${GITHUB_WORKSPACE}/bin/bazel" build --config=untrusted-ci //...
- name: Test
run: |
"${GITHUB_WORKSPACE}/bin/bazel" test --config=untrusted-ci //...