This repository was archived by the owner on Dec 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22target
33Cargo.lock
44devenv /*
5- ! devenv /integration /docker /entrypoint
65coverage
76romeo /testing /
87romeo /asset-contract /.test
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -ueo > /dev/null
33
4+ ENTRYPOINT_PATH=" ./integration/docker/entrypoint"
5+
46project_name () {
57 local input=" $1 "
68 local filter=" ${input// [![:alnum:]]/ _} "
@@ -21,7 +23,7 @@ for filter in "${filters[@]}"; do
2123 ./integration/bin/up docker-compose.yml $project
2224
2325 network=${project} _default
24- id=$( docker run -td --network $network -e PROJECT_NAME=$project testbed " $filter " )
26+ id=$( docker run -td --network $network -v $ENTRYPOINT_PATH :/usr/local/bin/entrypoint - e PROJECT_NAME=$project testbed " $filter " )
2527 ids+=($id )
2628 echo with container id: $id
2729
@@ -41,7 +43,7 @@ projects+=($project)
4143./integration/bin/up docker-compose.yml $project
4244
4345network=${project} _default
44- id=($( docker run -td --network $network -e PROJECT_NAME=$project testbed " not ($filter_union )" ) )
46+ id=($( docker run -td --network $network -v $ENTRYPOINT_PATH :/usr/local/bin/entrypoint - e PROJECT_NAME=$project testbed " not ($filter_union )" ) )
4547ids+=($id )
4648echo with container id: $id
4749
Original file line number Diff line number Diff line change @@ -38,6 +38,4 @@ COPY --from=romeo integration-tests.tar.zst .
3838
3939COPY . .
4040
41- COPY ./devenv/integration/docker/entrypoint /bin/entrypoint
42-
4341ENTRYPOINT [ "entrypoint" ]
You can’t perform that action at this time.
0 commit comments