Skip to content

Commit c760f2a

Browse files
committed
DNM
1 parent a6c4f3a commit c760f2a

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/ta-ci.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@ permissions:
1616
jobs:
1717
build:
1818
name: Rust CI
19-
uses: worldcoin/orb-rustzone/.github/workflows/ta.yaml@main
19+
uses: worldcoin/orb-rustzone/.github/workflows/ta.yaml@ryanbutler-orbs-1219-ta-signing-in-ci
2020
with:
2121
target_env: stage
2222
source: ${{ github.sha }}
2323
cargo_profile: artifact
24-
secrets:
25-
GIT_HUB_TOKEN: ${{ secrets.ORB_GIT_HUB_TOKEN }}
26-
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
24+
secrets: inherit
25+
# GIT_HUB_TOKEN: ${{ secrets.ORB_GIT_HUB_TOKEN }}
26+
# CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
27+
permissions: write-all
28+
# contents: read
29+
# id-token: write
30+
# deployments: write

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ result
88
result-devkit
99
.envrc
1010

11+
# Python stuff
12+
__pycache__
13+
1114
# Used by build.rs
1215
/git_version
1316

xtask/optee/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl SignArgs {
121121
format!("failed to read requried arg: {ENV_OPTEE_OS_PATH}")
122122
})?;
123123

124-
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)?;
124+
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)?;
125125

126126
Ok(())
127127
}

0 commit comments

Comments
 (0)