|
10 | 10 | - "**.md" |
11 | 11 | workflow_dispatch: |
12 | 12 |
|
13 | | -env: |
14 | | - DOTNET_CLI_TELEMETRY_OPTOUT: 1 |
15 | | - DOTNET_NOLOGO: 1 |
16 | | - NO_ANDROID: true |
17 | | - NO_MACCATALYST: true |
18 | | - |
19 | 13 | jobs: |
20 | 14 | ios-tests: |
21 | 15 | runs-on: macos-15 |
| 16 | + env: |
| 17 | + DOTNET_CLI_TELEMETRY_OPTOUT: 1 |
| 18 | + DOTNET_NOLOGO: 1 |
| 19 | + NO_ANDROID: true |
| 20 | + NO_MACCATALYST: true |
22 | 21 | steps: |
23 | 22 | - name: Cancel Previous Runs |
24 | 23 | if: github.ref_name != 'main' && !startsWith(github.ref_name, 'release/') |
|
44 | 43 | if: steps.first-test-run.outcome == 'failure' |
45 | 44 | run: pwsh scripts/device-test.ps1 ios -Run |
46 | 45 |
|
47 | | - - name: Upload results |
48 | | - if: success() || failure() |
49 | | - uses: actions/upload-artifact@v4 |
50 | | - with: |
51 | | - name: device-test-ios-results |
52 | | - path: test_output |
53 | | - |
54 | | - ios-integration-tests: |
55 | | - runs-on: macos-15 |
56 | | - steps: |
57 | | - - name: Cancel Previous Runs |
58 | | - if: github.ref_name != 'main' && !startsWith(github.ref_name, 'release/') |
59 | | - uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # Tag: 0.12.1 |
60 | | - |
61 | | - - name: Checkout |
62 | | - uses: actions/checkout@v5 |
63 | | - with: |
64 | | - submodules: recursive |
65 | | - |
66 | | - - name: Setup Environment |
67 | | - uses: ./.github/actions/environment |
68 | | - |
69 | | - - name: Run Integration Tests |
| 46 | + - name: Integration Tests |
70 | 47 | id: first-integration-test-run |
71 | 48 | uses: getsentry/github-workflows/sentry-cli/integration-test/@a5e409bd5bad4c295201cdcfe862b17c50b29ab7 # v2.14.1 |
72 | 49 | with: |
|
82 | 59 | if: success() || failure() |
83 | 60 | uses: actions/upload-artifact@v4 |
84 | 61 | with: |
85 | | - name: device-integration-test-ios-results |
86 | | - path: integration_test_output |
| 62 | + name: device-test-ios-results |
| 63 | + path: | |
| 64 | + test_output |
| 65 | + integration_test_output |
0 commit comments