Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Pal/Linux-SGX] Implement gramine-sgx-get-token in Rust #639

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Meson-Cargo integration: create a separate profile to be customized by Scripts/run-cargo.sh
# is used by Meson. We could instead always use the 'release' profile and then tune that, but
# the fact that build outputs are in build/target/release might be confusing when the user wants
# a debug build.
[profile.meson]
inherits = "release"
1 change: 1 addition & 0 deletions .ci/ubuntu18.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install -y \
ninja-build \
pkg-config \
protobuf-c-compiler \
protobuf-compiler \
pylint3 \
python \
python3-apport \
Expand Down
1 change: 1 addition & 0 deletions .ci/ubuntu20.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install -y \
ninja-build \
pkg-config \
protobuf-c-compiler \
protobuf-compiler \
pylint3 \
python \
python3-apport \
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/build
/install

# Rust build cache (for manual Cargo invokations and rust-analyzer,
# resides in the builddir when ran through meson)
/target

# No editor backup files.
*.sw*
*.backup
Expand Down
Loading