Skip to content

debug github action

debug github action #7

Workflow file for this run

name: ci
on:
push
jobs:
test:
name: Test
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