Skip to content

Commit

Permalink
fix perf. workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
parvit committed Mar 25, 2024
1 parent 750b221 commit 51f9f79
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/common-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
with:
clean: true

# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: 1.18.10
#
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.14

- name: Prepare
shell: powershell
run: |
Expand All @@ -78,8 +78,8 @@ jobs:
$config = Get-Content -Path ./docker/client-env/qpep.yml.tpl
$config = $config.replace('<QPEP_GATEWAY>',$env:REMOTE_GATEWAY)
$config = $config.replace('<QPEP_ADDRESS>',$env:LISTEN_ADDRESS)
$config = $config.replace('<QPEP_BACKEND>',${{ inputs.backend }})
$config = $config.replace('<QPEP_CCA>',${{ inputs.cca }})
$config = $config.replace('<QPEP_BACKEND>','${{ inputs.backend }}')
$config = $config.replace('<QPEP_CCA>','${{ inputs.cca }}')
$config > ./build/config/qpep.yml
Copy-Item "./windivert/x64/*" -Destination "./build"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ jobs:
test-matrix:
needs: launch-aws-vm
strategy:
max-parallel: 1
matrix:
download_size: [ 10 ]
connection_delay: [ 0, 500 ]
Expand Down

0 comments on commit 51f9f79

Please sign in to comment.