Retire jetson #43
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: Java Performance | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'binding/java/**/CheetahPerformanceTest.java' | |
- 'lib/common/**' | |
- 'lib/java/**' | |
- '.github/workflows/java-perf.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'binding/java/**/CheetahPerformanceTest.java' | |
- 'lib/common/**' | |
- 'lib/java/**' | |
- '.github/workflows/java-perf.yml' | |
defaults: | |
run: | |
working-directory: binding/java | |
jobs: | |
perf-github-hosted: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
init_performance_threshold_sec: 4.5 | |
proc_performance_threshold_sec: 1.0 | |
- os: macos-latest | |
init_performance_threshold_sec: 5.5 | |
proc_performance_threshold_sec: 3.0 | |
- os: windows-latest | |
init_performance_threshold_sec: 4.5 | |
proc_performance_threshold_sec: 1.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Build | |
run: ./gradlew assemble | |
- name: Test | |
run: ./gradlew test --info --tests CheetahPerformanceTest -DpvTestingAccessKey="${{secrets.PV_VALID_ACCESS_KEY}}" -DnumTestIterations="50" -DinitPerformanceThresholdSec="${{matrix.init_performance_threshold_sec}}" -DprocPerformanceThresholdSec="${{matrix.proc_performance_threshold_sec}}" | |
perf-self-hosted: | |
runs-on: ${{ matrix.machine }} | |
strategy: | |
fail-fast: false | |
matrix: | |
machine: [rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64] | |
include: | |
- machine: rpi3-32 | |
init_performance_threshold_sec: 14.0 | |
proc_performance_threshold_sec: 9.3 | |
- machine: rpi3-64 | |
init_performance_threshold_sec: 13.5 | |
proc_performance_threshold_sec: 8.3 | |
- machine: rpi4-32 | |
init_performance_threshold_sec: 8.5 | |
proc_performance_threshold_sec: 4.6 | |
- machine: rpi4-64 | |
init_performance_threshold_sec: 7.8 | |
proc_performance_threshold_sec: 5.0 | |
- machine: rpi5-64 | |
init_performance_threshold_sec: 7.8 | |
proc_performance_threshold_sec: 5.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: ./gradlew assemble | |
- name: Machine state before | |
working-directory: resources/scripts | |
run: bash machine-state.sh | |
- name: Test | |
run: ./gradlew test --info --tests CheetahPerformanceTest -DpvTestingAccessKey="${{secrets.PV_VALID_ACCESS_KEY}}" -DnumTestIterations="20" -DinitPerformanceThresholdSec="${{matrix.init_performance_threshold_sec}}" -DprocPerformanceThresholdSec="${{matrix.proc_performance_threshold_sec}}" | |
- name: Machine state after | |
working-directory: resources/scripts | |
run: bash machine-state.sh |