Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/test: add more platforms to benchmark github action #144

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion .github/workflows/benchmark-sanity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,31 @@ env:

jobs:
benchmark:
runs-on: ubuntu-latest
strategy:
matrix:
target: [
x86_64-unknown-linux-gnu,
# i686-unknown-linux-gnu,
aarch64-unknown-linux-gnu,
armv7-unknown-linux-gnueabihf,
riscv64gc-unknown-linux-gnu,
s390x-unknown-linux-gnu,
]
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
# Disable i686 tests until https://github.com/bytedance/monoio/issues/285 addressed.
# - target: i686-unknown-linux-gnu
# os: ubuntu-latest
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: armv7-unknown-linux-gnueabihf
os: ubuntu-latest
- target: riscv64gc-unknown-linux-gnu
os: ubuntu-latest
- target: s390x-unknown-linux-gnu
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout-Sources
uses: actions/checkout@v2
Expand Down
Loading