We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The engine-checks.yml runs Engine, JVM Tests, and Standard Library Tests jobs with the following steps.
engine-checks.yml
sbt buildEngineDistribution <benchmarks>/compile */buildNativeImage enso/verifyGeneratedPackage
ENSO_BENCHMARK_TEST_DRY_RUN=True bin/enso --jvm --run test/Benchmarks
bin/enso --run test/<tests> __NON_EXISTING_TEST__
bin/enso --jvm --run test/<tests> __NON_EXISTING_TEST__
sbt buildEngineDistributionNoIndex
sbt test
sbt buildEngineDistribution
bin/enso --run test/<tests>
The Standard Library Tests job only runs the tests in JVM mode (assuming they use bin/bash shell script and/or bin/enso.bat file as launchers).
bin/bash
bin/enso.bat
ENSO_LAUNCHER
native,test,debug,fast,-ls
ENSO_LAUNCHER=native,test
bin/enso --jvm --run test<tests>
test/*_Tests
test/Base_Tests
test/Geo_Tests
test/Table_Tests
test/Image_Tests
test/Microsoft_Tests/
test/Snowflake_Tests
test/Tableau_Tests
buildEngineDistribution
built-distribution
The text was updated successfully, but these errors were encountered:
4e6
No branches or pull requests
Description
The
engine-checks.yml
runs Engine, JVM Tests, and Standard Library Tests jobs with the following steps.sbt buildEngineDistribution <benchmarks>/compile */buildNativeImage enso/verifyGeneratedPackage
ENSO_BENCHMARK_TEST_DRY_RUN=True bin/enso --jvm --run test/Benchmarks
bin/enso --run test/<tests> __NON_EXISTING_TEST__
bin/enso --jvm --run test/<tests> __NON_EXISTING_TEST__
sbt buildEngineDistributionNoIndex
sbt test
sbt buildEngineDistribution
bin/enso --run test/<tests>
The Standard Library Tests job only runs the tests in JVM mode (assuming they use
bin/bash
shell script and/orbin/enso.bat
file as launchers).TODO
ENSO_LAUNCHER
support as provided by:ENSO_LAUNCHER
can benative,test,debug,fast,-ls
#12117ENSO_LAUNCHER=native,test
in Standard Library Tests jobsbin/enso --jvm --run test<tests>
targets to the Standard Library Tests (JVM) job.test/*_Tests
that aren't ready for Standard Library Tests (native) yettest/Base_Tests
,test/Geo_Tests
,test/Table_Tests
,test/Image_Tests
test/Microsoft_Tests/
,test/Snowflake_Tests
,test/Tableau_Tests
do not runEfficiency
buildEngineDistribution
step.built-distribution
directory.ENSO_LAUNCHER=native,test
in such a separate stepThe text was updated successfully, but these errors were encountered: