mirror of
https://github.com/google/benchmark.git
synced 2024-11-27 20:44:27 +00:00
e2556df80f
* Downgrade bazel to windows-2019 Windows 2022 is not well supported by bazel yet: https://github.com/bazelbuild/bazel/issues/18592 * no windows-latest, only windows-2019 (for bazel)
30 lines
711 B
YAML
30 lines
711 B
YAML
name: test-bindings
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
python_bindings:
|
|
name: Test GBM Python bindings on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest, macos-latest, windows-2019 ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.11
|
|
- name: Install GBM Python bindings on ${{ matrix.os}}
|
|
run:
|
|
python -m pip install wheel .
|
|
- name: Run bindings example on ${{ matrix.os }}
|
|
run:
|
|
python bindings/python/google_benchmark/example.py
|