Skip to content

Commit

Permalink
Prepare release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudip Bhattarai committed Feb 20, 2023
1 parent 9dd1251 commit 4578136
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .ci/build
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@ function execute-isolated() {

if [[ "$1" == cabal* ]] ; then
execute-isolated "$@" # execute the cabal command
elif [[ "$1" == 'shell' ]]
then
echo "+ execute-isolated $*"
exec docker run -it -u"$(id -u):$(id -g)" \
-v $CABAL_CACHE_DIR:$HOME/.cabal \
-v $CABAL_CACHE_DIR:/.cabal \
-v $DIST_NEWSTYLE_DIR:$WORKDIR/dist-newstyle/ \
-v $WORKDIR:$WORKDIR \
-v $CHROOT_DIR:/chroot-env/ \
-e OVERRIDE_CHROOT_DIR=/chroot-env \
-e HOME=$HOME \
--entrypoint /bin/bash \
--workdir $WORKDIR \
dquadrant/cardano-ci
else
## default build
execute-isolated 'cabal build exe:kuber && bash -e ./.ci/copy-libraries.sh'
Expand Down
5 changes: 4 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
*
!./dist-newstyle/build/docker
!./dist-newstyle/build/docker/chroot-env
!./.ci
!./playground
./playground/node_modules
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Kuber can be stared easily with [docker-compose.yml](./docker-compose.yml) file.

```bash
git clone https://github.com/dquadrant/kuber.git
git checkout 2.2.0
git checkout 2.3.0
docker-compose up -d
```

Expand Down
2 changes: 1 addition & 1 deletion kuber.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: kuber
version: 2.1.0.0
version: 2.3.0.0

-- A short (one-line) description of the package.
-- synopsis:
Expand Down
2 changes: 1 addition & 1 deletion server/kuber-server.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: kuber-server
version: 2.1.0.0
version: 2.3.0.0

-- A short (one-line) description of the package.
-- synopsis:
Expand Down

0 comments on commit 4578136

Please sign in to comment.