fix: make sure RTM_DEPRECATED is always defined even when disabled #94
Workflow file for this run
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: | |
pull_request: | |
branches: | |
- '**' | |
paths-ignore: | |
- docs/** | |
- '**/*.md' | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
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' | |
- 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' | |