Skip to content

Commit

Permalink
Remove ssv6 sandboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Nov 29, 2023
1 parent 6dd151b commit 5fa66f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 43 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -560,27 +560,27 @@ workflows:
requires:
- unit-tests
- create-sandboxes:
parallelism: 23
parallelism: 21
requires:
- build
- build-sandboxes:
parallelism: 23
parallelism: 21
requires:
- create-sandboxes
- chromatic-sandboxes:
parallelism: 20
parallelism: 18
requires:
- build-sandboxes
- e2e-production:
parallelism: 18
parallelism: 16
requires:
- build-sandboxes
- e2e-dev:
parallelism: 4
parallelism: 2
requires:
- create-sandboxes
- test-runner-production:
parallelism: 18
parallelism: 16
requires:
- build-sandboxes
- bench:
Expand Down Expand Up @@ -614,30 +614,30 @@ workflows:
requires:
- build
- create-sandboxes:
parallelism: 38
parallelism: 36
requires:
- build
# - smoke-test-sandboxes: # disabled for now
# requires:
# - create-sandboxes
- build-sandboxes:
parallelism: 38
parallelism: 36
requires:
- create-sandboxes
- chromatic-sandboxes:
parallelism: 35
parallelism: 33
requires:
- build-sandboxes
- e2e-production:
parallelism: 33
parallelism: 31
requires:
- build-sandboxes
- e2e-dev:
parallelism: 4
parallelism: 2
requires:
- create-sandboxes
- test-runner-production:
parallelism: 33
parallelism: 31
requires:
- build-sandboxes
# TODO: reenable once we find out the source of flakyness
Expand Down
30 changes: 0 additions & 30 deletions code/lib/cli/src/sandbox-templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -466,34 +466,6 @@ const baseTemplates = {
* They will be hidden by default in the Storybook status page.
*/
const internalTemplates = {
'internal/ssv6-vite': {
...baseTemplates['react-vite/default-ts'],
name: 'StoryStore v6 (react-vite/default-ts)',
isInternal: true,
modifications: {
mainConfig: {
features: {
storyStoreV7: false,
storyStoreV7MdxErrors: false,
},
},
},
skipTasks: ['bench'],
},
'internal/ssv6-webpack': {
...baseTemplates['cra/default-ts'],
name: 'StoryStore v6 (cra/default-ts)',
isInternal: true,
modifications: {
mainConfig: {
features: {
storyStoreV7: false,
storyStoreV7MdxErrors: false,
},
},
},
skipTasks: ['bench'],
},
'internal/swc-webpack': {
...baseTemplates['react-webpack/18-ts'],
name: 'SWC (react-webpack/18-ts)',
Expand Down Expand Up @@ -615,8 +587,6 @@ export const merged: TemplateKey[] = [
'preact-vite/default-ts',
'html-webpack/default',
'html-vite/default-ts',
'internal/ssv6-vite',
'internal/ssv6-webpack',
];
export const daily: TemplateKey[] = [
...merged,
Expand Down
1 change: 0 additions & 1 deletion scripts/tasks/sandbox-parts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ export const install: Task['run'] = async ({ sandboxDir }, { link, dryRun, debug
'bench-react-vite-default-ts',
'bench-react-vite-default-ts-nodocs',
'bench-react-vite-default-ts-test-build',
'internal-ssv6-vite',
'react-vite-default-js',
'react-vite-default-ts',
'svelte-vite-default-js',
Expand Down

0 comments on commit 5fa66f7

Please sign in to comment.