Skip to content

Commit

Permalink
add more platforms to benchmark github action
Browse files Browse the repository at this point in the history
Change-Id: Ied1120998211f38dbaf40393a6b69f755768af66
  • Loading branch information
xiaosong yang committed Nov 12, 2024
1 parent bcd4dd8 commit 06c47fa
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/benchmark-sanity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: benchmark sanity check
on:
push:
branches:
- main
- git-action-test
paths-ignore:
- '**.md'
- '**.png'
Expand All @@ -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

0 comments on commit 06c47fa

Please sign in to comment.