diff --git a/.github/workflows/test_branch.yml b/.github/workflows/test_branch.yml index 25a3612b..48838a79 100644 --- a/.github/workflows/test_branch.yml +++ b/.github/workflows/test_branch.yml @@ -47,18 +47,18 @@ jobs: sbt test ### Update & build - - name: Integration test - run: | - git clone https://github.com/fluencelabs/aqua-playground.git - cd aqua-playground - npm i - cd .. - sbt "cli/run -i aqua-playground/aqua/examples -o aqua-playground/src/compiled/examples -m aqua-playground/node_modules -c \"uniqueConst = 1\" -c \"anotherConst = \\\"ab\\\"\"" - cd aqua-playground - npm run examples - cd .. - sbt "cliJS/fastOptJS" - rm -rf aqua-playground/src/compiled/examples/* - node cli/.js/target/scala-3.0.1/cli-fastopt.js -i aqua-playground/aqua/examples -o aqua-playground/src/compiled/examples -m aqua-playground/node_modules -c "uniqueConst = 1" -c "anotherConst = \"ab\"" - cd aqua-playground - npm run examples +# - name: Integration test +# run: | +# git clone https://github.com/fluencelabs/aqua-playground.git +# cd aqua-playground +# npm i +# cd .. +# sbt "cli/run -i aqua-playground/aqua/examples -o aqua-playground/src/compiled/examples -m aqua-playground/node_modules -c \"uniqueConst = 1\" -c \"anotherConst = \\\"ab\\\"\"" +# cd aqua-playground +# npm run examples +# cd .. +# sbt "cliJS/fastOptJS" +# rm -rf aqua-playground/src/compiled/examples/* +# node cli/.js/target/scala-3.0.1/cli-fastopt.js -i aqua-playground/aqua/examples -o aqua-playground/src/compiled/examples -m aqua-playground/node_modules -c "uniqueConst = 1" -c "anotherConst = \"ab\"" +# cd aqua-playground +# npm run examples diff --git a/build.sbt b/build.sbt index 8a217fa5..cb016350 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ val declineV = "2.1.0" name := "aqua-hll" val commons = Seq( - baseAquaVersion := "0.2.1", + baseAquaVersion := "0.2.2", version := baseAquaVersion.value + "-" + sys.env.getOrElse("BUILD_NUMBER", "SNAPSHOT"), scalaVersion := dottyVersion, libraryDependencies ++= Seq( diff --git a/npm/package.json b/npm/package.json index 516ed07e..af2734ee 100644 --- a/npm/package.json +++ b/npm/package.json @@ -9,6 +9,7 @@ ], "bin": { "aqua": "index.js", + "aqua-cli": "index.js", "aqua-js": "index-experimental.js" }, "scripts": {},