Skip to content

Commit

Permalink
Merge pull request privacy-scaling-explorations#1422 from privacy-sca…
Browse files Browse the repository at this point in the history
…ling-explorations/chore/download-script

chore(download-script): add download script for 1.3 test artifacts
  • Loading branch information
ctrlc03 authored May 3, 2024
2 parents 85b4815 + 9c1edc2 commit 8e9f7d2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/scripts/download-zkeys-1-3.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

set -e

cd "$(dirname "$0")"
cd ..
mkdir -p ../cli/zkeys

URL=https://maci-develop-fra.s3.eu-central-1.amazonaws.com/v1.3.0/maci_artifacts_10-2-1-2_test.tar.gz
DIR_NAME="maci_keys.tar.gz"
OUT_DIR=../cli/

echo "downloading $URL"
curl $URL -o "$OUT_DIR/$DIR_NAME"
tar -xvf "$OUT_DIR/$DIR_NAME" -C "$OUT_DIR"

0 comments on commit 8e9f7d2

Please sign in to comment.