Revert "ci: retry install three times (#3924)"

This reverts commit 4a003878e2.
This commit is contained in:
Alex Yang
2023-08-23 16:52:34 -05:00
parent 340e10f765
commit dd60106b5d
4 changed files with 24 additions and 14 deletions

View File

@@ -6,13 +6,9 @@ runs:
steps:
- name: 'Install @electron-forge/maker-dmg'
if: runner.os == 'macos'
uses: nick-fields/retry@v2
shell: bash
working-directory: ./apps/electron
with:
timeout_minutes: 10
max_attempts: 3
retry_on: timeout
command: yarn add @electron-forge/maker-dmg --dev
run: yarn add @electron-forge/maker-dmg --dev
env:
HUSKY: '0'
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'

View File

@@ -39,12 +39,20 @@ runs:
run: yarn config set nmMode hardlinks-local
- name: yarn install
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
retry_on: timeout
command: yarn install ${{ inputs.extra-flags }}
if: ${{ inputs.package-install == 'true' }}
continue-on-error: true
shell: bash
run: yarn install ${{ inputs.extra-flags }}
env:
HUSKY: '0'
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
ELECTRON_SKIP_BINARY_DOWNLOAD: '1'
SENTRYCLI_SKIP_DOWNLOAD: '1'
- name: yarn install (try again)
if: ${{ steps.install.outcome == 'failure' }}
shell: bash
run: yarn install ${{ inputs.extra-flags }}
env:
HUSKY: '0'
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'

View File

@@ -10,6 +10,8 @@ on:
- README.md
- .github/**
- '!.github/workflows/nx.yml'
- '!.github/actions/build-rust/action.yml'
- '!.github/actions/setup-node/action.yml'
pull_request:
merge_group:
branches:
@@ -20,13 +22,15 @@ on:
- README.md
- .github/**
- '!.github/workflows/nx.yml'
- '!.github/actions/build-rust/action.yml'
- '!.github/actions/setup-node/action.yml'
jobs:
main:
name: Nx Cloud - Main Job
uses: nrwl/ci/.github/workflows/nx-cloud-main.yml@v0.13.0
with:
runs-on: ubuntu-latest
runs-on: macos-latest
main-branch-name: master
number-of-agents: 5
init-commands: |
@@ -43,7 +47,7 @@ jobs:
name: Nx Cloud - Agents
uses: nrwl/ci/.github/workflows/nx-cloud-agents.yml@v0.13.0
with:
runs-on: ubuntu-latest
runs-on: macos-latest
number-of-agents: 5
environment-variables: |
BUILD_TYPE=canary

View File

@@ -103,8 +103,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
timeout-minutes: 10
uses: ./.github/actions/setup-node
- name: Setup Maker
timeout-minutes: 10
uses: ./.github/actions/setup-maker
- name: Build AFFiNE native
uses: ./.github/actions/build-rust