File tree Expand file tree Collapse file tree 4 files changed +31
-4
lines changed
build_tools/build/src/engine
std-bits/microsoft/src/main/resources/META-INF/native-image/org/enso/microsoft Expand file tree Collapse file tree 4 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -3787,7 +3787,12 @@ lazy val `engine-runner` = project
3787
3787
`base-polyglot-root`.listFiles(" *.jar" ).map(_.getAbsolutePath()) ++
3788
3788
`image-polyglot-root`.listFiles(" *.jar" ).map(_.getAbsolutePath()) ++
3789
3789
`table-polyglot-root`.listFiles(" *.jar" ).map(_.getAbsolutePath()) ++
3790
- `database-polyglot-root`.listFiles(" *.jar" ).map(_.getAbsolutePath())
3790
+ `database-polyglot-root`.listFiles(" *.jar" ).map(_.getAbsolutePath()) ++
3791
+ `std-aws-polyglot-root`.listFiles(" *.jar" ).map(_.getAbsolutePath()) ++
3792
+ `std-microsoft-polyglot-root`
3793
+ .listFiles(" *.jar" )
3794
+ .map(_.getAbsolutePath())
3795
+
3791
3796
core ++ stdLibsJars
3792
3797
},
3793
3798
buildSmallJdk := {
@@ -3905,7 +3910,8 @@ lazy val `engine-runner` = project
3905
3910
" org.enso.image" ,
3906
3911
" org.enso.table" ,
3907
3912
" org.enso.database" ,
3908
- " org.eclipse.jgit"
3913
+ " org.eclipse.jgit" ,
3914
+ " com.amazonaws"
3909
3915
)
3910
3916
)
3911
3917
}
Original file line number Diff line number Diff line change @@ -702,6 +702,18 @@ pub async fn runner_sanity_test(
702
702
. run_ok ( )
703
703
. await ;
704
704
705
+ let test_aws = Command :: new ( & enso)
706
+ . args ( [ "--run" , repo_root. test . join ( "AWS_Tests" ) . as_str ( ) ] )
707
+ . set_env ( ENSO_DATA_DIRECTORY , engine_package) ?
708
+ . run_ok ( )
709
+ . await ;
710
+
711
+ let test_microsoft = Command :: new ( & enso)
712
+ . args ( [ "--run" , repo_root. test . join ( "Microsoft_Tests" ) . as_str ( ) ] )
713
+ . set_env ( ENSO_DATA_DIRECTORY , engine_package) ?
714
+ . run_ok ( )
715
+ . await ;
716
+
705
717
let test_geo = Command :: new ( & enso)
706
718
. args ( [ "--run" , repo_root. test . join ( "Geo_Tests" ) . as_str ( ) ] )
707
719
. set_env ( ENSO_DATA_DIRECTORY , engine_package) ?
@@ -714,7 +726,7 @@ pub async fn runner_sanity_test(
714
726
. run_ok ( )
715
727
. await ;
716
728
717
- let all_cmds = test_base. and ( test_internal_base) . and ( test_table) . and ( test_geo) . and ( test_image) ;
729
+ let all_cmds = test_base. and ( test_internal_base) . and ( test_table) . and ( test_aws ) . and ( test_microsoft ) . and ( test_geo) . and ( test_image) ;
718
730
719
731
// The following test does not actually run anything, it just checks if the engine
720
732
// can accept `--jvm` argument and evaluates something.
Original file line number Diff line number Diff line change
1
+ {
2
+ "resources" :{
3
+ "includes" :[{
4
+ "pattern" :" \\ QMETA-INF/java.sql.Driver\\ E"
5
+ }]},
6
+ "bundles" :[{
7
+ "name" : " com.microsoft.sqlserver.jdbc.SQLServerResource"
8
+ }]
9
+ }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Please set the following environment variables:
10
10
- 'ENSO_SQLSERVER_HOST' - the name of the server hosting SQLServer,
11
11
- 'ENSO_SQLSERVER_PORT' - the port SQLServer is on,
12
12
- 'ENSO_SQLSERVER_USER' - the user name to use to connect,
13
- - 'ENSO_SQLSERVER_PASSWORD' - the pasword for that user,
13
+ - 'ENSO_SQLSERVER_PASSWORD' - the password for that user,
14
14
- 'ENSO_SQLSERVER_DATABASE' - the database on the SQLServer to use.
15
15
16
16
## Docker
You can’t perform that action at this time.
0 commit comments