Skip to content

Commit

Permalink
chore(shards): update shards (#330)
Browse files Browse the repository at this point in the history
* chore(shards): update shards

* chore(test.sh): update docker compose command
  • Loading branch information
chillfox authored Aug 6, 2024
1 parent b0fe68c commit a35c02d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ shards:

bindata:
git: https://github.com/spider-gazelle/bindata.git
version: 2.0.0
version: 2.1.0

connect-proxy:
git: https://github.com/spider-gazelle/connect-proxy.git
Expand All @@ -39,7 +39,7 @@ shards:

csuuid:
git: https://github.com/wyhaines/csuuid.cr.git
version: 1.0.1+git.commit.b71cf5c899dd5cde6aff8e922bdabd5e2dfab585
version: 1.0.1+git.commit.4cb8656a9214aede9c1840cad4acf8e55e658f2f

db:
git: https://github.com/crystal-lang/crystal-db.git
Expand Down Expand Up @@ -167,7 +167,7 @@ shards:

placeos-models:
git: https://github.com/placeos/models.git
version: 9.53.3
version: 9.56.3

pool:
git: https://github.com/ysbaddaden/pool.git
Expand Down Expand Up @@ -199,7 +199,7 @@ shards:

splay_tree_map:
git: https://github.com/wyhaines/splay_tree_map.cr.git
version: 0.2.2
version: 0.3.0

time-ext:
git: https://github.com/wyhaines/time-ext.cr.git
Expand Down
10 changes: 5 additions & 5 deletions test
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ set -eu
# this function is called when Ctrl-C is sent
function trap_ctrlc ()
{
docker-compose down &> /dev/null
docker compose down &> /dev/null
exit 2
}

# initialise trap to call trap_ctrlc function
# when signal 2 (SIGINT) is received
trap "trap_ctrlc" 2

docker-compose pull -q
docker compose pull -q

docker-compose build -q
docker compose build -q

exit_code="0"

docker-compose run --rm test $@ || exit_code="$?"
docker compose run --rm test $@ || exit_code="$?"

docker-compose down &> /dev/null
docker compose down &> /dev/null

exit ${exit_code}

0 comments on commit a35c02d

Please sign in to comment.