Skip to content

Commit 4578136

Browse files
author
Sudip Bhattarai
committed
Prepare release 2.3.0
1 parent 9dd1251 commit 4578136

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

.ci/build

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,20 @@ function execute-isolated() {
6868

6969
if [[ "$1" == cabal* ]] ; then
7070
execute-isolated "$@" # execute the cabal command
71+
elif [[ "$1" == 'shell' ]]
72+
then
73+
echo "+ execute-isolated $*"
74+
exec docker run -it -u"$(id -u):$(id -g)" \
75+
-v $CABAL_CACHE_DIR:$HOME/.cabal \
76+
-v $CABAL_CACHE_DIR:/.cabal \
77+
-v $DIST_NEWSTYLE_DIR:$WORKDIR/dist-newstyle/ \
78+
-v $WORKDIR:$WORKDIR \
79+
-v $CHROOT_DIR:/chroot-env/ \
80+
-e OVERRIDE_CHROOT_DIR=/chroot-env \
81+
-e HOME=$HOME \
82+
--entrypoint /bin/bash \
83+
--workdir $WORKDIR \
84+
dquadrant/cardano-ci
7185
else
7286
## default build
7387
execute-isolated 'cabal build exe:kuber && bash -e ./.ci/copy-libraries.sh'

.dockerignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
*
2-
!./dist-newstyle/build/docker
2+
!./dist-newstyle/build/docker/chroot-env
3+
!./.ci
4+
!./playground
5+
./playground/node_modules

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Kuber can be stared easily with [docker-compose.yml](./docker-compose.yml) file.
4747

4848
```bash
4949
git clone https://github.com/dquadrant/kuber.git
50-
git checkout 2.2.0
50+
git checkout 2.3.0
5151
docker-compose up -d
5252
```
5353

kuber.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: kuber
3-
version: 2.1.0.0
3+
version: 2.3.0.0
44

55
-- A short (one-line) description of the package.
66
-- synopsis:

server/kuber-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: kuber-server
3-
version: 2.1.0.0
3+
version: 2.3.0.0
44

55
-- A short (one-line) description of the package.
66
-- synopsis:

0 commit comments

Comments
 (0)