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

yuanz pushed a change to branch no-std
in repository 
https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git


    from 4c65f12  CI: tests: Drop std TAs support
     new fe24fc7  examples: host: Drop redundant Cargo.lock files
     new d31decd  optee-teec: Use standard OPTEE_CLIENT_EXPORT
     new 592961d  optee-utee: Use standard TA_DEV_KIT_DIR
     new cd99800  examples: Refactor build infrastructure
     new 2a1757d  Makefile: Drop automatic OP-TEE modules build
     new a85d031  examples: ta: build.rs: Fix some linker incompatibilities
     new 6309d58  examples: Fix rust build for Arm 32-bit mode
     new b6849b7  CI: Updates for refactored build environment

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci.yml                           |  99 +++---
 Dockerfile                                         |   4 +-
 Makefile                                           |  75 ++---
 environment                                        |  41 ---
 examples/acipher-rs/host/Cargo.lock                | 104 -------
 examples/acipher-rs/host/Makefile                  |  10 +-
 examples/acipher-rs/ta/Makefile                    |  20 +-
 examples/acipher-rs/ta/build.rs                    |  41 +--
 examples/aes-rs/host/Cargo.lock                    | 104 -------
 examples/aes-rs/host/Makefile                      |  10 +-
 examples/aes-rs/ta/Makefile                        |  20 +-
 examples/aes-rs/ta/build.rs                        |  41 +--
 examples/authentication-rs/host/Cargo.lock         | 104 -------
 examples/authentication-rs/host/Makefile           |  10 +-
 examples/authentication-rs/ta/Makefile             |  20 +-
 examples/authentication-rs/ta/build.rs             |  41 +--
 examples/big_int-rs/host/Cargo.lock                | 104 -------
 examples/big_int-rs/host/Makefile                  |  10 +-
 examples/big_int-rs/ta/Makefile                    |  20 +-
 examples/big_int-rs/ta/build.rs                    |  41 +--
 examples/diffie_hellman-rs/host/Cargo.lock         | 104 -------
 examples/diffie_hellman-rs/host/Makefile           |  10 +-
 examples/diffie_hellman-rs/ta/Makefile             |  20 +-
 examples/diffie_hellman-rs/ta/build.rs             |  41 +--
 examples/digest-rs/host/Cargo.lock                 | 104 -------
 examples/digest-rs/host/Makefile                   |  10 +-
 examples/digest-rs/ta/Makefile                     |  20 +-
 examples/digest-rs/ta/build.rs                     |  41 +--
 examples/hello_world-rs/host/Cargo.lock            | 104 -------
 examples/hello_world-rs/host/Makefile              |  10 +-
 examples/hello_world-rs/ta/Makefile                |  20 +-
 examples/hello_world-rs/ta/build.rs                |  41 +--
 examples/hotp-rs/host/Cargo.lock                   | 104 -------
 examples/hotp-rs/host/Makefile                     |  10 +-
 examples/hotp-rs/ta/Makefile                       |  20 +-
 examples/hotp-rs/ta/build.rs                       |  41 +--
 examples/random-rs/host/Cargo.lock                 | 104 -------
 examples/random-rs/host/Makefile                   |  10 +-
 examples/random-rs/ta/Makefile                     |  20 +-
 examples/random-rs/ta/build.rs                     |  41 +--
 examples/secure_storage-rs/host/Cargo.lock         | 104 -------
 examples/secure_storage-rs/host/Makefile           |  10 +-
 examples/secure_storage-rs/ta/Makefile             |  20 +-
 examples/secure_storage-rs/ta/build.rs             |  41 +--
 examples/signature_verification-rs/host/Cargo.lock | 104 -------
 examples/signature_verification-rs/host/Makefile   |  10 +-
 examples/signature_verification-rs/ta/Makefile     |  20 +-
 examples/signature_verification-rs/ta/build.rs     |  41 +--
 examples/supp_plugin-rs/host/Cargo.lock            |  98 ------
 examples/supp_plugin-rs/host/Makefile              |  10 +-
 examples/supp_plugin-rs/plugin/Cargo.lock          | 106 -------
 examples/supp_plugin-rs/plugin/Makefile            |  10 +-
 examples/supp_plugin-rs/ta/Makefile                |  20 +-
 examples/supp_plugin-rs/ta/build.rs                |  41 +--
 examples/time-rs/host/Cargo.lock                   | 104 -------
 examples/time-rs/host/Makefile                     |  10 +-
 examples/time-rs/ta/Makefile                       |  20 +-
 examples/time-rs/ta/build.rs                       |  41 +--
 optee-teec/optee-teec-sys/build.rs                 |   4 +-
 optee-teec/systest/Cargo.lock                      | 336 ---------------------
 optee-teec/systest/build.rs                        |   2 +-
 optee-utee/optee-utee-sys/build.rs                 |   8 +-
 optee-utee/systest/Cargo.lock                      | 336 ---------------------
 optee-utee/systest/build.rs                        |   2 +-
 setup.sh                                           |  49 ---
 65 files changed, 547 insertions(+), 2794 deletions(-)
 delete mode 100644 environment
 delete mode 100644 examples/acipher-rs/host/Cargo.lock
 delete mode 100644 examples/aes-rs/host/Cargo.lock
 delete mode 100644 examples/authentication-rs/host/Cargo.lock
 delete mode 100644 examples/big_int-rs/host/Cargo.lock
 delete mode 100644 examples/diffie_hellman-rs/host/Cargo.lock
 delete mode 100644 examples/digest-rs/host/Cargo.lock
 delete mode 100644 examples/hello_world-rs/host/Cargo.lock
 delete mode 100644 examples/hotp-rs/host/Cargo.lock
 delete mode 100644 examples/random-rs/host/Cargo.lock
 delete mode 100644 examples/secure_storage-rs/host/Cargo.lock
 delete mode 100644 examples/signature_verification-rs/host/Cargo.lock
 delete mode 100644 examples/supp_plugin-rs/host/Cargo.lock
 delete mode 100644 examples/supp_plugin-rs/plugin/Cargo.lock
 delete mode 100644 examples/time-rs/host/Cargo.lock
 delete mode 100644 optee-teec/systest/Cargo.lock
 delete mode 100644 optee-utee/systest/Cargo.lock


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to