Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Mar 4, 2025
1 parent a088f34 commit aff9e1f
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/integration-test-studio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ on:
required: false
default: 'test'
FEDN_CLIENT_TIMEOUT:
description: 'Client Connection Timeout (OBS - not related to round timeout)'
description: 'Client Connection Timeout (OBS - not related to round timeout)'
required: false
default: '300'
default: '60'

jobs:
integration-test:
Expand Down Expand Up @@ -81,17 +81,18 @@ jobs:
- name: Generate .env file
run: |
echo "STUDIO_HOST=${{ github.event.inputs.STUDIO_HOST }}" > .ci/tests/studio/.env
echo "STUDIO_USER=${{ github.event.inputs.STUDIO_USER }}" >> .ci/tests/studio/.env
echo "FEDN_EXAMPLE=${{ github.event.inputs.FEDN_EXAMPLE }}" >> .ci/tests/studio/.env
echo "FEDN_NR_CLIENTS=${{ github.event.inputs.FEDN_NR_CLIENTS }}" >> .ci/tests/studio/.env
echo "FEDN_NR_ROUNDS=${{ github.event.inputs.FEDN_NR_ROUNDS }}" >> .ci/tests/studio/.env
echo "FEDN_ROUND_TIMEOUT=${{ github.event.inputs.FEDN_ROUND_TIMEOUT }}" >> .ci/tests/studio/.env
echo "FEDN_BUFFER_SIZE=${{ github.event.inputs.FEDN_BUFFER_SIZE }}" >> .ci/tests/studio/.env
echo "FEDN_FL_ALG=${{ github.event.inputs.FEDN_FL_ALG }}" >> .ci/tests/studio/.env
echo "FEDN_NR_EXPECTED_AGG=${{ github.event.inputs.FEDN_NR_EXPECTED_AGG }}" >> .ci/tests/studio/.env
echo "FEDN_SESSION_TIMEOUT=${{ github.event.inputs.FEDN_SESSION_TIMEOUT }}" >> .ci/tests/studio/.env
echo "FEDN_SESSION_NAME=${{ github.event.inputs.FEDN_SESSION_NAME }}" >> .ci/tests/studio/.env
echo "STUDIO_HOST=${{ github.event.inputs.STUDIO_HOST || 'api.studio.scaleoutplatform.com' }}" > .ci/tests/studio/.env
echo "STUDIO_USER=${{ github.event.inputs.STUDIO_USER || 'github@scaleoutsystems.com' }}" >> .ci/tests/studio/.env
echo "FEDN_EXAMPLE=${{ github.event.inputs.FEDN_EXAMPLE || 'mnist-pytorch' }}" >> .ci/tests/studio/.env
echo "FEDN_NR_CLIENTS=${{ github.event.inputs.FEDN_NR_CLIENTS || '2' }}" >> .ci/tests/studio/.env
echo "FEDN_NR_ROUNDS=${{ github.event.inputs.FEDN_NR_ROUNDS || '5' }}" >> .ci/tests/studio/.env
echo "FEDN_ROUND_TIMEOUT=${{ github.event.inputs.FEDN_ROUND_TIMEOUT || '180' }}" >> .ci/tests/studio/.env
echo "FEDN_BUFFER_SIZE=${{ github.event.inputs.FEDN_BUFFER_SIZE || '-1' }}" >> .ci/tests/studio/.env
echo "FEDN_FL_ALG=${{ github.event.inputs.FEDN_FL_ALG || 'fedavg' }}" >> .ci/tests/studio/.env
echo "FEDN_NR_EXPECTED_AGG=${{ github.event.inputs.FEDN_NR_EXPECTED_AGG || '2' }}" >> .ci/tests/studio/.env
echo "FEDN_SESSION_TIMEOUT=${{ github.event.inputs.FEDN_SESSION_TIMEOUT || '300' }}" >> .ci/tests/studio/.env
echo "FEDN_SESSION_NAME=${{ github.event.inputs.FEDN_SESSION_NAME || 'test' }}" >> .ci/tests/studio/.env
echo "FEDN_CLIENT_TIMEOUT=${{ github.event.inputs.FEDN_CLIENT_TIMEOUT || '60' }}" >> .ci/tests/studio/.env
- name: Run integration tests
env:
Expand Down

0 comments on commit aff9e1f

Please sign in to comment.