diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa65d598c..af3cd796e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,8 +118,9 @@ jobs: - ember-release - ember-beta - ember-canary - - "'ember-release + embroider-optimized'" - - "'ember-lts-4.8 + embroider-optimized'" + # @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210 + # - "'ember-release + embroider-optimized'" + # - "'ember-lts-4.8 + embroider-optimized'" steps: - uses: actions/checkout@v3 diff --git a/test-app/config/ember-try.js b/test-app/config/ember-try.js index 7cd25c1f4..7387ab2fc 100644 --- a/test-app/config/ember-try.js +++ b/test-app/config/ember-try.js @@ -1,10 +1,12 @@ 'use strict'; const getChannelURL = require('ember-source-channel-url'); -const { embroiderOptimized } = require('@embroider/test-setup'); +// @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210 +// const { embroiderOptimized } = require('@embroider/test-setup'); module.exports = async function () { - let releaseVersion = await getChannelURL('release'); + // @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210 + // let releaseVersion = await getChannelURL('release'); return { usePnpm: true, @@ -41,30 +43,32 @@ module.exports = async function () { }, }, }, - embroiderOptimized({ - name: 'ember-lts-4.8 + embroider-optimized', - npm: { - devDependencies: { - 'ember-source': '~4.8.0', - // @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408 - '@embroider/core': '2.1.2-unstable.c58f146', - '@embroider/compat': '2.1.2-unstable.c58f146', - '@embroider/webpack': '2.1.2-unstable.c58f146', - }, - }, - }), - embroiderOptimized({ - name: 'ember-release + embroider-optimized', - npm: { - devDependencies: { - 'ember-source': releaseVersion, - // @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408 - '@embroider/core': '2.1.2-unstable.c58f146', - '@embroider/compat': '2.1.2-unstable.c58f146', - '@embroider/webpack': '2.1.2-unstable.c58f146', - }, - }, - }), + // @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210 + + // embroiderOptimized({ + // name: 'ember-lts-4.8 + embroider-optimized', + // npm: { + // devDependencies: { + // 'ember-source': '~4.8.0', + // // @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408 + // '@embroider/core': '2.1.2-unstable.c58f146', + // '@embroider/compat': '2.1.2-unstable.c58f146', + // '@embroider/webpack': '2.1.2-unstable.c58f146', + // }, + // }, + // }), + // embroiderOptimized({ + // name: 'ember-release + embroider-optimized', + // npm: { + // devDependencies: { + // 'ember-source': releaseVersion, + // // @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408 + // '@embroider/core': '2.1.2-unstable.c58f146', + // '@embroider/compat': '2.1.2-unstable.c58f146', + // '@embroider/webpack': '2.1.2-unstable.c58f146', + // }, + // }, + // }), ], }; };