Skip to content

Commit

Permalink
[versioning] Upgrade to v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed May 15, 2023
1 parent 3680ce4 commit 0b32c03
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-project/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,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.2"
image: "virtuslab/scala-community-build-project-builder:jdk${{ env.java-version }}-v0.2.3"
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.2"
image: "virtuslab/scala-community-build-compiler-builder:v0.2.3"
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.2
scripts/build-builder-base.sh v0.2.3
```

Build all the remaining images

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

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

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

### 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.2")
sys.props.getOrElse("communitybuild.version", "v0.2.3")
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.2
image: virtuslab/scala-community-build-mvn-repo:v0.2.3
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.2"
export PREV_CB_VERSION="v0.2.3"

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

0 comments on commit 0b32c03

Please sign in to comment.