Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test: retry setup-build-env #5810

Merged
merged 1 commit into from
Dec 18, 2024
Merged
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
16 changes: 15 additions & 1 deletion .github/workflows/test-e2e-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,22 @@ jobs:
- name: Cache node_modules, build, extensions, and remote
uses: ./.github/actions/cache-multi-paths

- name: Setup Build and Compile
- name: Attempt 1 - Setup Build and Compile
uses: ./.github/actions/setup-build-env
continue-on-error: true

- name: Attempt 2 - Setup Build and Compile
if: ${{ failure() }}
uses: ./.github/actions/setup-build-env
continue-on-error: true

- name: Attempt 3 - Setup Build and Compile
if: ${{ failure() }}
uses: ./.github/actions/setup-build-env

- name: Fail if Retries Exhausted
if: ${{ failure() }}
run: exit 1

- name: Install Positron License
uses: ./.github/actions/install-license
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,22 @@ jobs:
- name: Cache node_modules, build, extensions, and remote
uses: ./.github/actions/cache-multi-paths

- name: Setup Build and Compile
- name: Attempt 1 - Setup Build and Compile
uses: ./.github/actions/setup-build-env
continue-on-error: true

- name: Attempt 2 - Setup Build and Compile
if: ${{ failure() }}
uses: ./.github/actions/setup-build-env
continue-on-error: true

- name: Attempt 3 - Setup Build and Compile
if: ${{ failure() }}
uses: ./.github/actions/setup-build-env

- name: Fail if Retries Exhausted
if: ${{ failure() }}
run: exit 1

- name: Install Positron License
uses: ./.github/actions/install-license
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,22 @@ jobs:
- name: Cache node_modules, build, extensions, and remote
uses: ./.github/actions/cache-multi-paths

- name: Setup Build and Compile
- name: Attempt 1 - Setup Build and Compile
uses: ./.github/actions/setup-build-env
continue-on-error: true

- name: Attempt 2 - Setup Build and Compile
if: ${{ failure() }}
uses: ./.github/actions/setup-build-env
continue-on-error: true

- name: Attempt 3 - Setup Build and Compile
if: ${{ failure() }}
uses: ./.github/actions/setup-build-env

- name: Fail if Retries Exhausted
if: ${{ failure() }}
run: exit 1

- name: Install Positron License
uses: ./.github/actions/install-license
Expand Down
Loading