Skip to content
Draft
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .github/workflows/build-cli-native-archives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ on:
{"os": "macos-latest", "runner": "macos-latest", "rids": "osx-arm64"}
]

env:
# Arcade sets NuGet's enhanced retry defaults to 6 tries with a 1s base delay in CI; these
# restore-heavy jobs need more room to retry individual package downloads without rerunning.
NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT: 10
NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS: 2000

jobs:

build_cli_archives:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
required: false
type: string

env:
# Arcade sets NuGet's enhanced retry defaults to 6 tries with a 1s base delay in CI; these
# restore-heavy jobs need more room to retry individual package downloads without rerunning.
NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT: 10
NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS: 2000

jobs:
build_packages:
name: Build packages
Expand Down Expand Up @@ -39,4 +45,3 @@ jobs:
name: build_packages_logs
path: artifacts/log
retention-days: 5

10 changes: 9 additions & 1 deletion .github/workflows/deployment-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
#
name: Deployment E2E Tests

env:
# Arcade sets NuGet's enhanced retry defaults to 6 tries with a 1s base delay in CI; these
# restore-heavy jobs need more room to retry individual package downloads without rerunning.
NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT: 10
NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS: 2000

on:
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -95,7 +101,7 @@ jobs:

- name: Build solution and pack CLI
run: |
# Build the full solution and pack CLI for local testing
# Build the full solution and pack CLI for local testing.
./build.sh --build --pack -c Release
env:
# Skip native build to save time - we'll use the non-native CLI
Expand Down Expand Up @@ -286,6 +292,7 @@ jobs:

- name: Upload test results
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: deployment-test-results-${{ matrix.shortname }}
Expand All @@ -295,6 +302,7 @@ jobs:

- name: Upload recordings
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: deployment-test-recordings-${{ matrix.shortname }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,7 @@ jobs:
- name: Upload logs, and test results
id: upload-logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: logs-${{ inputs.testShortName }}-${{ inputs.os }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/specialized-test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ jobs:

- name: Upload logs, and test results
if: ${{ always() }}
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: logs-runsheet
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests-daily-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
- name: Upload logs and test results
id: upload-logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: smoke-test-results-${{ inputs.quality || 'dev' }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ jobs:

- name: Upload test results
if: always()
continue-on-error: true
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: All-TestResults
Expand Down
Loading