Skip to content

Commit

Permalink
Upgrade version to v0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Jul 14, 2023
1 parent 1eed581 commit 780c302
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build-project/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ runs:
uses: addnab/docker-run-action@v3
if: steps.check-history.outputs.can-skip-build != 'true'
with:
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-v0.2.5"
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-v0.2.6"
options: -v ${{ github.workspace }}:/opencb/ -v ${{ github.workspace }}/github_rsa:/root/.ssh/id_rsa:ro
run: |
DefaultConfig='{"memoryRequestMb":4096}'
Expand Down Expand Up @@ -168,7 +168,7 @@ runs:
uses: addnab/docker-run-action@v3
if: steps.check-history.outputs.can-skip-build != 'true'
with:
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-v0.2.5"
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-latest"
options: -v ${{ github.workspace }}:/opencb/ -e ELASTIC_USERNAME=${{ inputs.elastic-user }} -e ELASTIC_PASSWORD=${{ inputs.elastic-password }}
run: |
ConfigFile="/opencb/.github/workflows/buildConfig.json"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ runs:
uses: addnab/docker-run-action@v3
if: steps.check-published.outputs.is-compiler-published == 'false'
with:
image: "virtuslab/scala-community-build-compiler-builder:v0.2.5"
image: "virtuslab/scala-community-build-compiler-builder:v0.2.6"
options: -v ${{ github.workspace }}/compiler:/compiler/
run: |
Version="${{ steps.calc-version.outputs.effective-scala-version }}"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,19 @@ eval $(minikube -p minikube docker-env)
Most likely you'll need to build the base image only once (it doesn't get modified too often but building it takes quite a lot of time), e.g.:

```shell
scripts/build-builder-base.sh v0.2.5
scripts/build-builder-base.sh version
```

Build all the remaining images

```shell
scripts/build-quick.sh v0.2.5
scripts/build-quick.sh version
```

or (re)build each image separately e.g.

```shell
scripts/build-mvn-repo.sh v0.2.5
scripts/build-mvn-repo.sh version
```

### Deploying and debugging in k8s
Expand Down
2 changes: 1 addition & 1 deletion cli/scb-cli.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class FailedProjectException(msg: String)
with NoStackTrace

val communityBuildVersion =
sys.props.getOrElse("communitybuild.version", "v0.2.5")
sys.props.getOrElse("communitybuild.version", "v0.2.6")
private val CBRepoName = "VirtusLab/community-build3"
val projectBuilderUrl =
s"https://raw.githubusercontent.com/$CBRepoName/master/project-builder"
Expand Down
2 changes: 1 addition & 1 deletion scripts/bisect.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.nio.file.attribute.PosixFilePermissions
import java.nio.charset.StandardCharsets
import java.nio.file._

val communityBuildVersion = "v0.2.5"
val communityBuildVersion = "v0.2.6"

@main def run(args: String*): Unit =
val config = scopt.OParser
Expand Down

0 comments on commit 780c302

Please sign in to comment.