Skip to content
Draft

DNM #892

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
7 changes: 5 additions & 2 deletions .github/workflows/ta-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@ permissions:
jobs:
build:
name: Rust CI
uses: worldcoin/orb-rustzone/.github/workflows/ta.yaml@main
uses: worldcoin/orb-rustzone/.github/workflows/ta.yaml@ryanbutler-orbs-1219-ta-signing-in-ci
with:
target_env: stage
source: ${{ github.sha }}
cargo_profile: artifact
secrets:
permissions: write-all
secrets:
GIT_HUB_TOKEN: ${{ secrets.ORB_GIT_HUB_TOKEN }}
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
YEET_TEST: ${{ secrets.YEET_TEST }}
AWS_ROLE: ${{ secrets.AWS_ROLE }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ result
result-devkit
.envrc

# Python stuff
__pycache__

# Used by build.rs
/git_version

Expand Down
2 changes: 1 addition & 1 deletion xtask/optee/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl SignArgs {
format!("failed to read requried arg: {ENV_OPTEE_OS_PATH}")
})?;

run_cmd!(AWS_PROFILE=$aws_profile uv run $optee_os_path/scripts/sign_encrypt.py sign-enc --uuid $inspected_uuid --in $file_to_sign --out $out_dir/$inspected_uuid.ta --key $key_id)?;
run_cmd!(AWS_PROFILE=$aws_profile uv run --all-packages $optee_os_path/scripts/sign_encrypt.py sign-enc --uuid $inspected_uuid --in $file_to_sign --out $out_dir/$inspected_uuid.ta --key $key_id)?;

Ok(())
}
Expand Down
Loading