File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -193,20 +193,12 @@ jobs:
193193 Write-Host "Pulling Docker image: $env:FULL_IMAGE_NAME"
194194 docker pull $env:FULL_IMAGE_NAME
195195
196- - name : Define SERVER_ENDPOINT variable if needed
197- if : matrix.backend-version == '24.1' || matrix.backend-version == '24.2' || matrix.backend-version == '25.1'
198- run : |
199- $env:SERVER_ENDPOINT = "-e [email protected] " 200- echo "SERVER_ENDPOINT variable set to: $env:SERVER_ENDPOINT"
201- echo "SERVER_ENDPOINT=$env:SERVER_ENDPOINT" | Out-File -FilePath $env:GITHUB_ENV -Append
202-
203196 - name : Start Geometry service and verify start
204197 env :
205198 FULL_IMAGE_NAME : " ${{ env.ANSRV_GEO_IMAGE }}:${{ matrix.image-tag }}"
206199 PORT_MAPPING : " ${{ env.ANSRV_GEO_PORT }}:50051"
207200 TRANSPORT_MODE_SELECTION : ${{ secrets.TRANSPORT_MODE_SELECTION }}
208201 run : |
209- .\.venv\Scripts\Activate.ps1
210202 # Write command to file launch.txt for sanitizing purposes
211203 echo "docker run --detach --name $env:GEO_CONT_NAME -e LICENSE_SERVER=$env:ANSRV_GEO_LICENSE_SERVER $env:SERVER_ENDPOINT -p $env:PORT_MAPPING $env:FULL_IMAGE_NAME $env:TRANSPORT_MODE_SELECTION" | Out-File -FilePath launch.txt
212204 # Read the file and execute the command
@@ -220,7 +212,6 @@ jobs:
220212 env :
221213 BACKEND_VERSION : ${{ matrix.backend-version }}
222214 run : |
223- .\.venv\Scripts\Activate.ps1
224215 pytest -v --backwards-compatibility=yes --backend-version=$env:BACKEND_VERSION -rf
225216
226217 - name : Upload coverage to Codecov
You can’t perform that action at this time.
0 commit comments