Skip to content

Adding the complete architecture for search benchmarking #2

Adding the complete architecture for search benchmarking

Adding the complete architecture for search benchmarking #2

Workflow file for this run

name: Benchmarks
on:
push:
branches:
- master
- benchmarks
- release-*
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
benchmarks:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- name: Install dependencies
run: make docs/Manifest.toml
- name: Build the manual
run: julia --color=yes --project=docs/ docs/make.jl html
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run search benchmarks
run: make search-benchmarks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}