You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@teaclave.apache.org by ms...@apache.org on 2021/07/07 22:14:34 UTC

[incubator-teaclave] branch master updated (2f5a5d8 -> 314aae5)

This is an automated email from the ASF dual-hosted git repository.

mssun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave.git.


    from 2f5a5d8  Correct some documents (#519)
     add b5fd001  Update to SGX SDK 1.1.3
     add d7e1f47  Update docker
     add 2e7ef9b  Fix linting issues
     add 9c76d24  Update CI script
     add 50dd3e0  Fix dcap building issue
     add e966622  Check return values of function calls
     add 47c1e8a  Fixing dcap device mapping
     add a5a05cd  Do not ignore Cargo.lock/Cargo.toml to avoid the build system is messed up
     add 8363cdf  Third-party submodule is not needed for CodeQL
     add 314aae5  Refactor the CodeQL CI script

No new revisions were added by this update.

Summary of changes:
 .drone.yml                                         |   72 +-
 .github/workflows/ci.yml                           |    8 +-
 .github/workflows/codeql-analysis.yml              |   30 +-
 .gitignore                                         |    4 +-
 CMakeLists.txt                                     |    6 +-
 attestation/Cargo.toml                             |   14 +-
 attestation/src/cert.rs                            |    1 +
 attestation/src/lib.rs                             |    2 +
 attestation/src/service.rs                         |    4 +-
 binder/Cargo.toml                                  |    6 +-
 binder/src/error.rs                                |    3 +
 binder/src/ipc/app.rs                              |    1 -
 cli/Cargo.toml                                     |    2 +-
 cmake/tomls/Cargo.sgx_trusted_lib.toml             |   30 +-
 cmake/tomls/Cargo.sgx_untrusted_app.toml           |    8 +-
 cmake/tomls/Cargo.unix_app.toml                    |    6 +-
 common/protected_fs_rs/Cargo.lock                  |  132 ++
 common/protected_fs_rs/Cargo.toml                  |    6 +-
 .../sgx_tprotected_fs/non_sgx_protected_fs.cpp     |   12 +-
 common/rusty_leveldb_sgx/Cargo.toml                |    8 +-
 config/Cargo.toml                                  |    2 +-
 config/config_gen/Cargo.lock                       |  430 ++++++
 crypto/Cargo.toml                                  |    2 +-
 dcap/Cargo.toml                                    |    8 +-
 ...rfile => build.ubuntu-1804.sgx-2.12.Dockerfile} |    8 +-
 ...e => build.ubuntu-1804.sgx-dcap-1.9.Dockerfile} |   18 +-
 docker/teaclave-rt.ubuntu-1804.Dockerfile          |    6 +-
 docs/azure-confidential-computing.md               |    2 +-
 docs/my-first-function.md                          |    4 +-
 examples/c/Makefile                                |    1 +
 examples/python/wasm_rust_psi_payload/Cargo.lock   |   12 +
 examples/rust/builtin_echo/Cargo.lock              |  925 +++++++++++++
 examples/rust/builtin_echo/Cargo.toml              |    3 +
 .../rust/builtin_ordered_set_intersect/Cargo.lock  |  925 +++++++++++++
 .../rust/builtin_ordered_set_intersect/Cargo.toml  |    3 +
 executor/Cargo.toml                                |    6 +-
 file_agent/Cargo.lock                              | 1461 ++++++++++++++++++++
 file_agent/Cargo.toml                              |    2 +-
 function/Cargo.toml                                |    8 +-
 function/src/face_detection.rs                     |    2 +-
 rpc/Cargo.toml                                     |    4 +-
 rpc/src/protocol.rs                                |    3 +
 runtime/Cargo.toml                                 |    6 +-
 sdk/rust/Cargo.lock                                |  916 ++++++++++++
 sdk/rust/Cargo.toml                                |    3 +
 services/access_control/enclave/Cargo.toml         |    4 +-
 services/authentication/enclave/Cargo.toml         |    6 +-
 .../authentication/enclave/src/internal_service.rs |    6 +-
 services/authentication/enclave/src/user_info.rs   |    6 +-
 services/execution/enclave/Cargo.toml              |    6 +-
 services/frontend/enclave/Cargo.toml               |    4 +-
 services/management/enclave/Cargo.toml             |    4 +-
 services/management/enclave/src/service.rs         |    2 +-
 services/proto/Cargo.toml                          |    8 +-
 services/proto/proto_gen/Cargo.lock                |  610 ++++++++
 services/proto/src/teaclave_frontend_service.rs    |    8 +-
 services/scheduler/enclave/Cargo.toml              |    6 +-
 services/storage/enclave/Cargo.toml                |    4 +-
 services/utils/service_enclave_utils/Cargo.toml    |    6 +-
 tests/fixtures/functions/face_detection/input.jpg  |  Bin 262603 -> 324109 bytes
 tests/functional/app/Cargo.toml                    |    2 +-
 tests/functional/enclave/Cargo.toml                |    4 +-
 tests/functional/enclave/src/execution_service.rs  |    2 +-
 tests/functional/enclave/src/scheduler_service.rs  |    4 +-
 tests/integration/app/Cargo.toml                   |    2 +-
 tests/integration/enclave/Cargo.toml               |    4 +-
 tests/unit/app/Cargo.toml                          |    2 +-
 tests/unit/enclave/Cargo.toml                      |    4 +-
 tests/utils/Cargo.toml                             |    2 +-
 third_party/crates-io                              |    2 +-
 third_party/crates-sgx                             |    2 +-
 third_party/rust-sgx-sdk                           |    2 +-
 tool/app/Cargo.toml                                |    2 +-
 tool/enclave/Cargo.toml                            |    6 +-
 types/Cargo.toml                                   |    4 +-
 types/src/error.rs                                 |    3 +
 types/src/task.rs                                  |    5 +-
 worker/Cargo.toml                                  |    6 +-
 78 files changed, 5667 insertions(+), 186 deletions(-)
 create mode 100644 common/protected_fs_rs/Cargo.lock
 create mode 100644 config/config_gen/Cargo.lock
 rename docker/{build.ubuntu-1804.sgx-2.9.1.Dockerfile => build.ubuntu-1804.sgx-2.12.Dockerfile} (94%)
 rename docker/{build.ubuntu-1804.sgx-dcap-1.6.Dockerfile => build.ubuntu-1804.sgx-dcap-1.9.Dockerfile} (85%)
 create mode 100644 examples/python/wasm_rust_psi_payload/Cargo.lock
 create mode 100644 examples/rust/builtin_echo/Cargo.lock
 mode change 100755 => 100644 examples/rust/builtin_echo/Cargo.toml
 create mode 100644 examples/rust/builtin_ordered_set_intersect/Cargo.lock
 mode change 100755 => 100644 examples/rust/builtin_ordered_set_intersect/Cargo.toml
 create mode 100644 file_agent/Cargo.lock
 create mode 100644 sdk/rust/Cargo.lock
 create mode 100644 services/proto/proto_gen/Cargo.lock

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org