Skip to content

Commit

Permalink
Update dependencies in aws setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tchajed committed Jan 12, 2024
1 parent 644a915 commit ac8bb3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eval/aws/setup-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ EOF

# Install Dafny

DAFNY_VERSION=3.5.0
wget -O /tmp/dafny.zip "https://github.com/dafny-lang/dafny/releases/download/v$DAFNY_VERSION/dafny-$DAFNY_VERSION-x64-ubuntu-16.04.zip"
DAFNY_VERSION=4.4.0
wget -O /tmp/dafny.zip "https://github.com/dafny-lang/dafny/releases/download/v$DAFNY_VERSION/dafny-$DAFNY_VERSION-x64-ubuntu-20.04.zip"
cd
unzip /tmp/dafny.zip
mv dafny .dafny-bin
Expand Down Expand Up @@ -179,7 +179,7 @@ pip3 install argparse

# Install Go and Go dependencies

GO_FILE=go1.18.1.linux-amd64.tar.gz
GO_FILE=go1.21.6.linux-amd64.tar.gz
wget https://go.dev/dl/$GO_FILE
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf $GO_FILE
rm $GO_FILE
Expand Down Expand Up @@ -214,7 +214,7 @@ cd ~/
sudo apt-get install ripgrep
sudo apt-get install fd-find

HYPERFINE_VERSION=1.13.0
HYPERFINE_VERSION=1.18.0
wget https://github.com/sharkdp/hyperfine/releases/download/v${HYPERFINE_VERSION}/hyperfine_${HYPERFINE_VERSION}_amd64.deb
sudo dpkg -i hyperfine_${HYPERFINE_VERSION}_amd64.deb
rm hyperfine_${HYPERFINE_VERSION}_amd64.deb
Expand Down

0 comments on commit ac8bb3e

Please sign in to comment.