Skip to content

Commit

Permalink
Merge pull request #128 from atsign-foundation/2025-01-11
Browse files Browse the repository at this point in the history
ci: backup
  • Loading branch information
XavierChanth authored Jan 11, 2025
2 parents a9c502a + 0f5aa52 commit e4601ba
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/c/at_c
Submodule at_c updated 62 files
+1 −1 .github/workflows/c_release.yml
+1 −1 .github/workflows/scorecards.yml
+31 −16 .github/workflows/tests.yaml
+70 −0 docs/just.md
+8 −1 just.template.env
+28 −9 justfile
+6 −3 packages/atauth/CMakeLists.txt
+4 −0 packages/atauth/include/atauth/atactivate.h
+4 −0 packages/atauth/include/atauth/auth_cli.h
+8 −3 packages/atauth/src/atactivate.c
+10 −7 packages/atauth/src/atactivate_arg_parser.c
+126 −83 packages/atauth/src/auth_cli.c
+3 −4 packages/atauth/src/send_enroll_request.c
+2 −0 packages/atchops/src/rsa.c
+3 −0 packages/atchops/src/rsa_key.c
+4 −1 packages/atchops/tests/test_rsadecrypt.c
+4 −1 packages/atchops/tests/test_rsaencrypt.c
+4 −1 packages/atchops/tests/test_rsaprivatepopulate.c
+5 −2 packages/atchops/tests/test_rsapublicpopulate.c
+4 −1 packages/atchops/tests/test_rsasign.c
+5 −1 packages/atchops/tests/test_rsaverify.c
+11 −0 packages/atclient/CMakeLists.txt
+1 −1 packages/atclient/src/atclient.c
+4 −0 packages/atclient/src/atkey.c
+71 −0 packages/atclient/src/atserver_message.c
+39 −0 packages/atclient/src/atserver_message.h
+2 −0 packages/atclient/src/connection.c
+6 −3 packages/atclient/src/socket_mbedtls.c
+1 −1 packages/atclient/tests/test_atkey_from_string.c
+6 −0 packages/atclient/tests/test_atkey_metadata.c
+2 −0 packages/atclient/tests/test_atkey_to_string.c
+0 −195 packages/atclient/tests/test_atkeys_write.c
+245 −0 packages/atclient/tests/test_atserver_message.c
+2 −1 packages/atcommons/include/atcommons/enroll_params.h
+32 −8 tests/functional_tests/CMakeLists.txt
+76 −0 tests/functional_tests/README.md
+30 −0 tests/functional_tests/check_docker_readiness/CMakeLists.txt
+173 −0 tests/functional_tests/check_docker_readiness/src/main.c
+3 −8 tests/functional_tests/check_docker_readiness/tools/build.sh
+0 −1 tests/functional_tests/lib/CMakeLists.txt
+23 −12 tests/functional_tests/lib/include/functional_tests/config.h
+10 −0 tests/functional_tests/lib/include/functional_tests/helpers.h
+0 −22 tests/functional_tests/lib/src/config.c
+36 −18 tests/functional_tests/lib/src/helpers.c
+13 −10 tests/functional_tests/tests/test_atclient_connection.c
+29 −32 tests/functional_tests/tests/test_atclient_pkam_authenticate.c
+9 −8 tests/functional_tests/tests/test_atclient_utils_find_atserver_address.c
+124 −0 tests/functional_tests/tests/test_atkeys_write.c
+0 −13 tests/functional_tests/tools/run_ctest.sh
+0 −0 tests/functional_tests/virtualenv/docker-compose.yaml
+0 −0 tests/functional_tests/virtualenv/keys/@alice🛠_key.atKeys
+0 −0 tests/functional_tests/virtualenv/keys/@bob🛠_key.atKeys
+0 −0 tests/functional_tests/virtualenv/keys/@colin🛠_key.atKeys
+0 −0 tests/functional_tests/virtualenv/pkam_virtualenv.sh
+0 −0 tests/functional_tests/virtualenv/start_virtualenv.sh
+0 −0 tests/functional_tests/virtualenv/stop_virtualenv.sh
+0 −9 tools/clean_install.sh
+0 −17 tools/clean_run_ctest.sh
+0 −8 tools/debug_install.sh
+0 −8 tools/install.sh
+0 −17 tools/run_ctest.sh
+1 −0 valgrind.Dockerfile
2 changes: 1 addition & 1 deletion modules/dart/at_libraries
2 changes: 1 addition & 1 deletion modules/dart/at_server
Submodule at_server updated 27 files
+18 −18 .github/workflows/at_server.yaml
+1 −1 .github/workflows/at_server_dev_deploy.yaml
+1 −1 .github/workflows/at_server_prod_deploy.yaml
+1 −1 .github/workflows/codeql.yml
+1 −1 .github/workflows/dependency-review.yml
+4 −4 .github/workflows/promote_canary.yaml
+15 −14 .github/workflows/refreshcerts.yaml
+1 −1 .github/workflows/scorecards.yml
+0 −51 .github/workflows/update_python_requirements.yml
+2 −2 .github/workflows/ve_base.yaml
+4 −4 .github/workflows/vip_rebuild.yaml
+0 −7 .gitignore
+1 −1 packages/at_root_server/Dockerfile
+1 −1 tools/build_secondary/Dockerfile
+1 −1 tools/build_secondary/Dockerfile.observe
+1 −1 tools/build_virtual_environment/ve/Dockerfile.vip
+1 −1 tools/build_virtual_environment/ve_base/Dockerfile
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/root/certs/cert.pem
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/root/certs/fullchain.pem
+26 −26 tools/build_virtual_environment/ve_base/contents/atsign/root/certs/privkey.pem
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/cert.pem
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/fullchain.pem
+26 −26 tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/privkey.pem
+190 −0 tools/poetry.lock
+4 −5 tools/pyproject.toml
+0 −106 tools/requirements.txt
+0 −13 tools/update_requirements.sh
2 changes: 1 addition & 1 deletion modules/dart/at_tools

0 comments on commit e4601ba

Please sign in to comment.