This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
Add README note #443
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: '1.10.2.796' | |
- name: Prepare environment | |
run: sudo apt-get update && sudo apt-get install -y gnuplot python3-setuptools python3-pandas python3-seaborn rlwrap libboost-dev libboost-thread-dev gawk | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
id: cache | |
env: | |
cache-name: dependencies | |
with: | |
path: | | |
/tmp/dependencies | |
node_modules | |
key: ${{ runner.os }}-local-${{ env.cache-name }}-${{ hashFiles('DEPENDENCIES') }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('package.json') }} | |
- name: Install dependencies | |
run: make --jobs deps DEPSDIR=/tmp/dependencies | |
- name: Lint | |
run: make lint | |
- name: Benchmark | |
run: make benchmark DEPSDIR=/tmp/dependencies |