File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 88  include :
99  - jdk : openjdk11 
1010    scala : 2.12.8 
11+   - os : windows 
12+     language : bash 
13+ 14+     before_script :
15+     - curl "https://raw.githubusercontent.com/DanySK/Gravis-CI/c8f400623d8f756ef7c/.install-jdk-travis.sh" --output .install-jdk-travis.sh 
16+     - source .install-jdk-travis.sh 
17+     - wget https://raw.githubusercontent.com/paulp/sbt-extras/0ee2dae2eba72efb4a464a5ad255e348696ecda7/sbt && chmod +x ./sbt 
18+     script :
19+     - ./sbt "++ 2.12.8" test 
1120
1221sudo : false 
1322
Original file line number Diff line number Diff line change 1+ val  excludeTestsIfWindows  =  Set (
2+   //  TODO
3+   //  new line char?
4+   " scalikejdbc.play.FixtureSpec"  ,
5+ )
6+ 
7+ testOptions in Test  in ThisBuild  ++=  {
8+   if  (scala.util.Properties .isWin) {
9+     Seq (Tests .Exclude (excludeTestsIfWindows))
10+   } else  {
11+     Nil 
12+   }
13+ }
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments