mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 03:54:21 +01:00
The endpoint changed on Antithesis side to avoid the complaint about not joining a network so let's adjust the script.
11 lines
506 B
Bash
Executable File
11 lines
506 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl --fail -u "$ANTITHESIS_USER:$ANTITHESIS_PASSWD" \
|
|
-X POST https://$ANTITHESIS_TENANT.antithesis.com/api/v1/launch/basic_test \
|
|
-d "{\"params\": { \"antithesis.description\":\"basic_test on main\",
|
|
\"custom.duration\":\"1\",
|
|
\"antithesis.config_image\":\"$ANTITHESIS_DOCKER_REPO/limbo-config:antithesis-latest\",
|
|
\"antithesis.images\":\"$ANTITHESIS_DOCKER_REPO/limbo-workload:antithesis-latest\",
|
|
\"antithesis.report.recipients\":\"$ANTITHESIS_EMAIL\"
|
|
} }"
|