forked from nfrechette/acl
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (25 loc) · 825 Bytes
/
Copy pathbenchmark.yml
File metadata and controls
27 lines (25 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: benchmark
on:
pull_request:
branches:
- '**'
paths-ignore:
- docs/**
- '**/*.md'
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Building (release-x64)
uses: docker://ghcr.io/nfrechette/toolchain-amd64-focal:v1
with:
args: 'python3 make.py -ci -compiler clang14 -config Release -cpu x64 -bench -build'
# Can't run benchmark just yet because clips haven't been packaged in a zip file we can download
#- name: Running benchmark (release-x64)
# uses: docker://ghcr.io/nfrechette/toolchain-amd64-focal:v1
# with:
# args: 'python3 make.py -ci -compiler clang14 -config Release -cpu x64 -bench -run_bench'