Skip to content

Commit 86a5850

Browse files
committed
Revert "shard per integration"
This reverts commit fb33493.
1 parent 1b5ae82 commit 86a5850

File tree

1 file changed

+19
-41
lines changed

1 file changed

+19
-41
lines changed

.github/workflows/integration-tests.yml

Lines changed: 19 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -26,44 +26,12 @@ jobs:
2626
os: macos-14
2727

2828
integration:
29-
- name: upgrade
30-
shard: 1/3
31-
- name: upgrade
32-
shard: 2/3
33-
- name: upgrade
34-
shard: 3/3
35-
- name: vite
36-
shard: 1/5
37-
- name: vite
38-
shard: 2/5
39-
- name: vite
40-
shard: 3/5
41-
- name: vite
42-
shard: 4/5
43-
- name: vite
44-
shard: 5/5
45-
- name: cli
46-
shard: 1/4
47-
- name: cli
48-
shard: 2/4
49-
- name: cli
50-
shard: 3/4
51-
- name: cli
52-
shard: 4/4
53-
- name: postcss
54-
shard: 1/5
55-
- name: postcss
56-
shard: 2/5
57-
- name: postcss
58-
shard: 3/5
59-
- name: postcss
60-
shard: 4/5
61-
- name: postcss
62-
shard: 5/5
63-
- name: oxide
64-
shard: 1/1
65-
- name: webpack
66-
shard: 1/1
29+
- upgrade
30+
- vite
31+
- cli
32+
- postcss
33+
- oxide
34+
- webpack
6735

6836
# Exclude windows and macos from being built on feature branches
6937
run-all:
@@ -79,7 +47,7 @@ jobs:
7947
runs-on: ${{ matrix.runner.os }}
8048
timeout-minutes: 30
8149

82-
name: ${{ matrix.runner.name }} / ${{ matrix.integration.name }}
50+
name: ${{ matrix.runner.name }} / ${{ matrix.integration }}
8351

8452
steps:
8553
- uses: actions/checkout@v4
@@ -135,8 +103,18 @@ jobs:
135103
CARGO_PROFILE_RELEASE_LTO: 'off'
136104
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER: 'lld-link'
137105

138-
- name: Test ${{ matrix.integration.name }} ${{ matrix.integration.shard }}
139-
run: pnpm run test:integrations ./integrations/${{ matrix.integration.name }} --shard ${{ matrix.integration.shard }}
106+
- name: Test ${{ matrix.integration }} 1/3
107+
run: pnpm run test:integrations ./integrations/${{ matrix.integration }} --shard 1/3
108+
env:
109+
GITHUB_WORKSPACE: ${{ github.workspace }}
110+
111+
- name: Test ${{ matrix.integration }} 2/3
112+
run: pnpm run test:integrations ./integrations/${{ matrix.integration }} --shard 2/3
113+
env:
114+
GITHUB_WORKSPACE: ${{ github.workspace }}
115+
116+
- name: Test ${{ matrix.integration }} 3/3
117+
run: pnpm run test:integrations ./integrations/${{ matrix.integration }} --shard 3/3
140118
env:
141119
GITHUB_WORKSPACE: ${{ github.workspace }}
142120

0 commit comments

Comments
 (0)