Skip to content

Commit

Permalink
馃挌 No parallel "git" command
Browse files Browse the repository at this point in the history
Parallel "git" command executions suddenly started to fail in CI. As it does not seem to be something really supported, let's run the commands one after the other to avoid flaky executions in CI.
  • Loading branch information
dubzzz committed Nov 7, 2023
1 parent db508e5 commit d4433b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-status.yml
Expand Up @@ -349,7 +349,7 @@ jobs:
- name: Alter internals to behave as if published
run: yarn workspaces foreach -pvi --no-private exec yarn node $(yarn bin packaged) --keep-node-modules
- name: Retrieve potentially dropped test-bundle
run: yarn workspaces foreach -pvi --no-private exec "git restore -s@ -SW -- test-bundle || true"
run: yarn workspaces foreach -vi --no-private exec "git restore -s@ -SW -- test-bundle || true"
- name: Check publication lint
run: yarn publint:all
- name: Check bundles
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:
- name: Alter internals to behave as if published
run: yarn workspaces foreach -pRvi --from '@fast-check/test-types' --no-private exec yarn node $(yarn bin packaged) --keep-node-modules
- name: Retrieve dropped test-types
run: yarn workspaces foreach -pvi --no-private exec "git restore -s@ -SW -- test-types"
run: yarn workspaces foreach -vi --no-private exec "git restore -s@ -SW -- test-types"
- name: Switch folder to CommonJS
run: yarn workspaces foreach -pvi --no-private exec "cd test-types && ../../../.github/scripts/rename.sh ts cts"
- name: Check in CommonJS mode
Expand Down

0 comments on commit d4433b3

Please sign in to comment.