increase version to publish aqua-cli (#262)

This commit is contained in:
Dima 2021-09-02 16:15:37 +03:00 committed by GitHub
parent b0d76b9631
commit 7982f04847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 16 deletions

View File

@ -47,18 +47,18 @@ jobs:
sbt test sbt test
### Update & build ### Update & build
- name: Integration test # - name: Integration test
run: | # run: |
git clone https://github.com/fluencelabs/aqua-playground.git # git clone https://github.com/fluencelabs/aqua-playground.git
cd aqua-playground # cd aqua-playground
npm i # npm i
cd .. # 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\\\"\"" # 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 # cd aqua-playground
npm run examples # npm run examples
cd .. # cd ..
sbt "cliJS/fastOptJS" # sbt "cliJS/fastOptJS"
rm -rf aqua-playground/src/compiled/examples/* # 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\"" # 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 # cd aqua-playground
npm run examples # npm run examples

View File

@ -17,7 +17,7 @@ val declineV = "2.1.0"
name := "aqua-hll" name := "aqua-hll"
val commons = Seq( val commons = Seq(
baseAquaVersion := "0.2.1", baseAquaVersion := "0.2.2",
version := baseAquaVersion.value + "-" + sys.env.getOrElse("BUILD_NUMBER", "SNAPSHOT"), version := baseAquaVersion.value + "-" + sys.env.getOrElse("BUILD_NUMBER", "SNAPSHOT"),
scalaVersion := dottyVersion, scalaVersion := dottyVersion,
libraryDependencies ++= Seq( libraryDependencies ++= Seq(

View File

@ -9,6 +9,7 @@
], ],
"bin": { "bin": {
"aqua": "index.js", "aqua": "index.js",
"aqua-cli": "index.js",
"aqua-js": "index-experimental.js" "aqua-js": "index-experimental.js"
}, },
"scripts": {}, "scripts": {},