Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,17 @@ jobs:

- name: Trust HTTPS development certificate (Linux)
if: inputs.os == 'ubuntu-latest'
run: ${{ env.DOTNET_SCRIPT }} dev-certs https --trust
# Allow the task to succeed on partial trust.
# Remove this workaround once https://github.com/dotnet/aspnetcore/pull/65392 has shipped
run: |
EXIT_CODE=0
${{ env.DOTNET_SCRIPT }} dev-certs https --trust || EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ] && [ $EXIT_CODE -ne 4 ]; then
echo "dev-certs https --trust failed with exit code $EXIT_CODE"
exit $EXIT_CODE
fi
env:
WSL_INTEROP: ""

- name: Verify Docker is running
# nested docker containers not supported on windows
Expand Down
Loading