Skip to content

rename test

rename test #9

Workflow file for this run

name: benchmark
on:
push
jobs:
test:
name: Build&Benchmark
runs-on: ubuntu-latest
steps:
- name: Check out code into the repo directory
uses: actions/checkout@v2
- name: Install bazel
run: |
wget https://github.com/bazelbuild/bazel/releases/download/6.1.1/bazel-6.1.1-installer-linux-x86_64.sh
sudo bash bazel-6.1.1-installer-linux-x86_64.sh
which bazel
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install openssl
sudo apt-get install libssl-dev
openssl version
- name: Run bazel build
run:
make build
- name: Run benchmark
run:
make benchmark