|
65 | 65 | path: projects |
66 | 66 | - name: Install and Start RabbitMQ |
67 | 67 | id: install-start-rabbitmq |
68 | | - run: .\.ci\windows\gha-setup.ps1 |
| 68 | + run: ${{ github.workspace }}\.ci\windows\gha-setup.ps1 |
69 | 69 | - name: Integration Tests |
70 | 70 | run: | |
71 | 71 | $tx = Start-Job -Verbose -ScriptBlock { & "${{ github.workspace }}\.ci\windows\toxiproxy\toxiproxy-server.exe" }; ` |
|
79 | 79 | --environment 'PASSWORD=grapefruit' ` |
80 | 80 | --environment SSL_CERTS_DIR="${{ github.workspace }}\.ci\certs" ` |
81 | 81 | "${{ github.workspace }}\projects\Test\Integration\Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed' |
| 82 | + - name: Check for errors in RabbitMQ logs |
| 83 | + run: ${{ github.workspace }}\.ci\windows\gha-log-check.ps1 |
82 | 84 | - name: Maybe upload RabbitMQ logs |
83 | 85 | if: failure() |
84 | 86 | uses: actions/upload-artifact@v4 |
@@ -110,7 +112,7 @@ jobs: |
110 | 112 | path: projects |
111 | 113 | - name: Install and Start RabbitMQ |
112 | 114 | id: install-start-rabbitmq |
113 | | - run: .\.ci\windows\gha-setup.ps1 |
| 115 | + run: ${{ github.workspace }}\.ci\windows\gha-setup.ps1 |
114 | 116 | - name: Sequential Integration Tests |
115 | 117 | run: dotnet test --environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" "${{ github.workspace }}\projects\Test\SequentialIntegration\SequentialIntegration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed' |
116 | 118 | - name: Maybe upload RabbitMQ logs |
@@ -186,6 +188,8 @@ jobs: |
186 | 188 | --environment 'PASSWORD=grapefruit' \ |
187 | 189 | --environment SSL_CERTS_DIR="${{ github.workspace }}/.ci/certs" \ |
188 | 190 | "${{ github.workspace }}/projects/Test/Integration/Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed' |
| 191 | + - name: Check for errors in RabbitMQ logs |
| 192 | + run: ${{ github.workspace}}/.ci/ubuntu/gha-log-check.sh |
189 | 193 | - name: Maybe upload RabbitMQ logs |
190 | 194 | if: failure() |
191 | 195 | uses: actions/upload-artifact@v4 |
|
0 commit comments