11 lines
217 B
Bash
11 lines
217 B
Bash
#!/usr/bin/bash
|
|
|
|
cargo build --release
|
|
|
|
docker run -ti \
|
|
--rm \
|
|
--mount type=bind,src=$(pwd),dst=/opt/husk/mapped/ \
|
|
localhost/mta \
|
|
bash -c "/usr/bin/prepare.sh && bash /opt/husk/mapped/e2e-tests/runner.sh"
|
|
|