Skip to content

Commit

Permalink
chore(ci): remove default-with-jquery scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlafroscia committed Jan 29, 2019
1 parent f6ac06d commit c446a4f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 33 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
- env: EMBER_TRY_SCENARIO=ember-release
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
- env: EMBER_TRY_SCENARIO=ember-default-with-jquery

before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
Expand Down
53 changes: 21 additions & 32 deletions config/ember-try.js
Original file line number Diff line number Diff line change
@@ -1,57 +1,59 @@
'use strict';
"use strict";

const getChannelURL = require('ember-source-channel-url');
const getChannelURL = require("ember-source-channel-url");

module.exports = function() {
return Promise.all([
getChannelURL('release'),
getChannelURL('beta'),
getChannelURL('canary')
]).then((urls) => {
getChannelURL("release"),
getChannelURL("beta"),
getChannelURL("canary")
]).then(urls => {
return {
useYarn: true,
scenarios: [
{
name: 'ember-lts-2.18',
name: "ember-lts-2.18",
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': true })
EMBER_OPTIONAL_FEATURES: JSON.stringify({
"jquery-integration": true
})
},
npm: {
devDependencies: {
'@ember/jquery': '^0.5.1',
'ember-source': '~2.18.0'
"@ember/jquery": "^0.5.1",
"ember-source": "~2.18.0"
}
}
},
{
name: 'ember-lts-3.4',
name: "ember-lts-3.4",
npm: {
devDependencies: {
'ember-source': '~3.4.0'
"ember-source": "~3.4.0"
}
}
},
{
name: 'ember-release',
name: "ember-release",
npm: {
devDependencies: {
'ember-source': urls[0]
"ember-source": urls[0]
}
}
},
{
name: 'ember-beta',
name: "ember-beta",
npm: {
devDependencies: {
'ember-source': urls[1]
"ember-source": urls[1]
}
}
},
{
name: 'ember-canary',
name: "ember-canary",
npm: {
devDependencies: {
'ember-source': urls[2]
"ember-source": urls[2]
}
}
},
Expand All @@ -60,23 +62,10 @@ module.exports = function() {
// `ember try:each` manually or from a customized CI config will run it
// along with all the other scenarios.
{
name: 'ember-default',
name: "ember-default",
npm: {
devDependencies: {}
}
},
{
name: 'ember-default-with-jquery',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({
'jquery-integration': true
})
},
npm: {
devDependencies: {
'@ember/jquery': '^0.5.1'
}
}
}
]
};
Expand Down

0 comments on commit c446a4f

Please sign in to comment.