forked from hanabi1224/Programming-Language-Benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade to ubuntu jammy (hanabi1224#334)
- Loading branch information
1 parent
3741586
commit 9899a8a
Showing
10 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/sh | ||
|
||
sudo apt-get install -y libapr1 libapr1-dev libomp-12-dev | ||
sudo apt-get install -y libapr1 libapr1-dev libomp-14-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/sh | ||
|
||
sudo apt install -y libomp-12-dev | ||
sudo apt install -y libomp-14-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/bash | ||
|
||
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc | ||
sudo apt-add-repository https://packages.microsoft.com/ubuntu/20.04/prod | ||
sudo apt-add-repository https://packages.microsoft.com/ubuntu/22.04/prod | ||
sudo apt-get update | ||
sudo apt-get install -y libmsquic zlib1g-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
#!/usr/bin/sh | ||
|
||
sudo apt-get install -y software-properties-common apt-transport-https | ||
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94 | ||
# sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94 | ||
curl https://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add - | ||
sudo apt-key finger '[email protected]' | ||
sudo add-apt-repository https://dl.hhvm.com/ubuntu | ||
sudo apt-get update | ||
sudo apt-get install -y hhvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/sh | ||
|
||
VERSION=dev-2022-11 | ||
VERSION=dev-2022-12 | ||
FILE_NAME=odin-ubuntu-amd64-$VERSION.zip | ||
|
||
mkdir /tmp/odin | ||
cd /tmp/odin | ||
wget https://github.com/odin-lang/Odin/releases/download/$VERSION/$FILE_NAME | ||
unzip -o $FILE_NAME | ||
sudo chmod +x $PWD/ubuntu_artifacts/odin | ||
sudo ln -sf $PWD/ubuntu_artifacts/odin /usr/bin/odin | ||
sudo chmod +x $PWD/odin | ||
sudo ln -sf $PWD/odin /usr/bin/odin | ||
odin version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters