Skip to content

Commit

Permalink
Merge pull request #10876 from MinaProtocol/feature/update-archive-image
Browse files Browse the repository at this point in the history
[Compatible] Use the archive URL for the current branch when running tests
  • Loading branch information
mrmr1993 committed May 6, 2022
2 parents 5dfd6a9 + 68bd2fd commit 416ba61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib/integration_test_cloud_engine/mina_automation.ml
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,11 @@ module Network_config = struct
; libp2p_secret = ""
}
in
let mina_archive_schema =
"https://raw.githubusercontent.com/MinaProtocol/mina/develop/src/app/archive/create_schema.sql"
let mina_archive_base_url =
"https://raw.githubusercontent.com/MinaProtocol/mina/"
^ Mina_version.commit_id ^ "/src/app/archive/"
in
let mina_archive_schema = mina_archive_base_url ^ "create_schema.sql" in
let mk_net_keypair index (pk, sk) =
let secret_name = "test-keypair-" ^ Int.to_string index in
let keypair =
Expand Down

0 comments on commit 416ba61

Please sign in to comment.