Skip to content

Performance Testing [workflow_dispatch][main] - 35.163.142.7/500ms delay #330

Performance Testing [workflow_dispatch][main] - 35.163.142.7/500ms delay

Performance Testing [workflow_dispatch][main] - 35.163.142.7/500ms delay #330

Workflow file for this run

name: PerformanceTests
on:
schedule:
- cron: '1 1 * * *'
workflow_dispatch:
inputs:
server_public_address:
description: 'public address for the server'
type: string
default: 35.163.142.7
required: true
server_private_address:
description: 'private address for the server'
type: string
default: 172.31.38.198
required: true
client_listen_address:
description: 'address for the client to listen on'
type: string
default: 192.168.1.21
required: true
server_wait_timeout:
description: 'Server global timeout for tests'
type: integer
default: 45
required: false
connection_delay_ms:
description: 'connection delay in milliseconds set on the server'
type: integer
default: 0
required: true
connection_delay_device:
description: 'serverside network device to set delay on'
type: string
default: eth0
required: true
run-name: Performance Testing [${{ github.event_name }}][${{ github.head_ref || github.ref_name }}] - ${{ inputs.server_public_address || '35.163.142.7' }}/${{ inputs.connect_delay_ms || '500' }}ms delay
jobs:
test-matrix:
strategy:
matrix:
download_size: [ 10 ]
connection_delay: [ 0, 500 ]
connections_number: [ 1, 4 ]
backend: [ 'quic-go', 'quicly-go' ]
cca: [ 'reno', 'search' ]
exclude:
- backend: 'quic-go'
cca: 'search'
uses: './.github/workflows/common-performance.yml'

Check failure on line 54 in .github/workflows/performance.yml

View workflow run for this annotation

GitHub Actions / PerformanceTests

Invalid workflow file

The workflow is not valid. In .github/workflows/performance.yml (Line: 54, Col: 11): Error from called workflow Project-Faster/qpep/.github/workflows/common-performance.yml@35ad8a27d6c97c684a1b4e6d53e9e866631b61cd (Line: 181, Col: 23): Unexpected end of expression: '.'. Located at position 7 within expression: inputs.
with:
server_public_address: ${{ inputs.server_public_address }}
server_private_address: ${{ inputs.server_private_address }}
client_listen_address: ${{ inputs.client_listen_address }}
server_wait_timeout: ${{ inputs.server_wait_timeout }}
connection_delay_device: ${{ inputs.connection_delay_device }}
download_size: ${{ matrix.download_size }}
connections_number: ${{ matrix.connections_number }}
backend: ${{ matrix.backend }}
cca: ${{ matrix.cca }}
connection_delay_ms: ${{ matrix.connection_delay }}
secrets: inherit