Skip to content

Commit

Permalink
[versioning] Upgrade to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed May 19, 2023
1 parent 62f73ac commit a8abd60
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.3"
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-v0.2.4"
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.3"
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-v0.2.4"
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.3"
image: "virtuslab/scala-community-build-compiler-builder:v0.2.4"
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.3
scripts/build-builder-base.sh v0.2.4
```

Build all the remaining images

```shell
scripts/build-quick.sh v0.2.3
scripts/build-quick.sh v0.2.4
```

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

```shell
scripts/build-mvn-repo.sh v0.2.3
scripts/build-mvn-repo.sh v0.2.4
```

### 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.3")
sys.props.getOrElse("communitybuild.version", "v0.2.4")
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 k8s/mvn-repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
secretName: mvn-repo-keystore
containers:
- name: mvn-repo
image: virtuslab/scala-community-build-mvn-repo:v0.2.3
image: virtuslab/scala-community-build-mvn-repo:v0.2.4
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8081
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -ne 1 ]; then
fi

VERSION="$1"
export PREV_CB_VERSION="v0.2.3"
export PREV_CB_VERSION="v0.2.4"

javaDefault=11
javaAccessoryVersions=(8 17 19)
Expand Down

0 comments on commit a8abd60

Please sign in to comment.