Skip to content

Commit 41f397e

Browse files
Merge pull request cdapio#262 from cdapio/update-sandbox-url
fix e2e workflow to run on release 6.11
2 parents f1b3d6a + 1813be3 commit 41f397e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/scripts/run_e2e_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def run_shell_command(cmd):
4343
args=parser.parse_args()
4444

4545
# Start CDAP sandbox
46-
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.11.0-SNAPSHOT.zip"
46+
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/v6.11.0-SNAPSHOT/cdap-sandbox-6.11.0-SNAPSHOT.zip"
4747
print("Downloading CDAP sandbox from",sandbox_url)
4848
sandbox_dir = sandbox_url.split("/")[-1].split(".zip")[0]
4949
r = requests.get(sandbox_url)

src/main/scripts/run_e2e_test_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run_shell_command(cmd):
2929
if __name__ == "__main__":
3030
# Start CDAP sandbox
3131
print("Downloading CDAP sandbox")
32-
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.11.0-SNAPSHOT.zip"
32+
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/v6.11.0-SNAPSHOT/cdap-sandbox-6.11.0-SNAPSHOT.zip"
3333
sandbox_dir = sandbox_url.split("/")[-1].split(".zip")[0]
3434
r = requests.get(sandbox_url)
3535
z = zipfile.ZipFile(io.BytesIO(r.content))

0 commit comments

Comments
 (0)