소스 검색

Lock Firefox builds to Linux

Right now Sauce Labs is not triggering builds for Firefox, and that
is causing the automated testing to fail. This might be because
there is no "latest" version logged for Firefox on Sauce Labs, but
it could also be becuase we aren't giving it a platform to look for.

This was also done for Opera as right now Sauce Labs is running
tests on Linux anyway.
Kevin Brown 9 년 전
부모
커밋
716e79b7d4
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      Gruntfile.js

+ 4 - 2
Gruntfile.js

@@ -150,7 +150,8 @@ module.exports = function (grunt) {
             },
 
             {
-              browserName: 'firefox'
+              browserName: 'firefox',
+              platform: 'linux'
             },
 
             {
@@ -159,7 +160,8 @@ module.exports = function (grunt) {
 
             {
               browserName: 'opera',
-              version: '12'
+              version: '12',
+              platform: 'linux'
             }
           ]
         }