Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasten committed Oct 31, 2024
1 parent 9ea3017 commit 021edec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ sudo apt install build-essential libssl-dev

### Install the DEB package

If you're on Ubuntu 20.04 or 22.04, you can install the DEB package:
If you're on Ubuntu 20.04, 22.04, or 24.04, you can install the DEB package:

```bash
sudo mkdir -p /etc/apt/keyrings
wget -qO- https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo tee /etc/apt/keyrings/intel-sgx-keyring.asc > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/intel-sgx-keyring.asc arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/intel-sgx.list
sudo apt update
EGO_DEB=ego_1.5.4_amd64_ubuntu-$(lsb_release -rs).deb
wget https://github.com/edgelesssys/ego/releases/download/v1.5.4/$EGO_DEB
EGO_DEB=ego_1.6.0_amd64_ubuntu-$(lsb_release -rs).deb
wget https://github.com/edgelesssys/ego/releases/download/v1.6.0/$EGO_DEB
sudo apt install ./$EGO_DEB build-essential libssl-dev
```

Expand Down
6 changes: 3 additions & 3 deletions docs/docs/getting-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ sudo apt install build-essential libssl-dev

## Install the DEB package

If you're on Ubuntu 20.04 or 22.04, you can install the DEB package:
If you're on Ubuntu 20.04, 22.04, or 24.04, you can install the DEB package:

```bash
sudo mkdir -p /etc/apt/keyrings
wget -qO- https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo tee /etc/apt/keyrings/intel-sgx-keyring.asc > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/intel-sgx-keyring.asc arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/intel-sgx.list
sudo apt update
EGO_DEB=ego_1.5.4_amd64_ubuntu-$(lsb_release -rs).deb
wget https://github.com/edgelesssys/ego/releases/download/v1.5.4/$EGO_DEB
EGO_DEB=ego_1.6.0_amd64_ubuntu-$(lsb_release -rs).deb
wget https://github.com/edgelesssys/ego/releases/download/v1.6.0/$EGO_DEB
sudo apt install ./$EGO_DEB build-essential libssl-dev
```

Expand Down
6 changes: 3 additions & 3 deletions src/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ego-dev
base: core20
version: "1.5.4"
version: "1.6.0"
summary: EGo lets you build, debug und run Go apps on Intel SGX!
description: EGo is a framework for building confidential apps in Go. Confidential apps run in always-encrypted and verifiable enclaves on Intel SGX-enabled hardware.

Expand All @@ -26,8 +26,8 @@ apps:

parts:
ego:
source: https://github.com/edgelesssys/ego/releases/download/v1.5.4/ego_1.5.4_amd64_ubuntu-20.04.deb
source-checksum: "sha256/82421eded7131739cfcfe9b7d2d3780263982b9638024b941a53228db2f95822"
source: https://github.com/edgelesssys/ego/releases/download/v1.6.0/ego_1.6.0_amd64_ubuntu-20.04.deb
source-checksum: "sha256/0db1d4908702e1cab33a51f8004359d6693b230c5f2410c26c9457f1a48e19da"
source-type: deb
plugin: dump
build-attributes: [no-patchelf] # needed otherwise Snap breaks the go binary, causing it to segfault on launch
Expand Down

0 comments on commit 021edec

Please sign in to comment.