Skip to content

Sync main with dev #364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8a7ed61
Replace KSM with 1Password in test-mlperf-inference-tvm-resnet50.yml
nathanw-mlc Apr 9, 2025
14d3b9f
Add back if condition for secret fetching in test-mlperf-inference-tv…
nathanw-mlc Apr 9, 2025
5c2888e
Replace KSM with 1Password in test-mlperf-inference-resnet50.yml
nathanw-mlc Apr 9, 2025
3f15aa7
Update op-load-secret to support Windows runner in test-mlperf-infere…
nathanw-mlc Apr 16, 2025
06eb1d6
@nathanw-mlc Replace KSM with 1Password in test-mlperf-inference-rgat…
nathanw-mlc Apr 16, 2025
bc947db
Replace KSM with 1Password in test-mlperf-inference-retinanet.yml
nathanw-mlc Apr 16, 2025
1361916
Add fetch-secret need in test-mlperf-inference-rgat.yml
nathanw-mlc Apr 16, 2025
f3d7134
Add fetch-secret need in test-mlperf-inference-retinanet.yml
nathanw-mlc Apr 16, 2025
3a4a559
Replace KSM with 1Password in test-mlc-script-features.yml
nathanw-mlc Apr 16, 2025
eef2739
Replace KSM with 1Password in test-mlperf-inference-mlcommons-cpp-res…
nathanw-mlc Apr 16, 2025
69da985
Simplify op-load-secret in test-mlc-script-features.yml
nathanw-mlc Apr 16, 2025
1fe5093
Remove unnecessary checkout from op job in test-mlperf-inference-resn…
nathanw-mlc Apr 16, 2025
f3652c8
Remove unnecessary checkout from op job in test-mlperf-inference-reti…
nathanw-mlc Apr 16, 2025
8fd501a
Remove unnecessary checkout from op job in test-mlperf-inference-mlco…
nathanw-mlc Apr 16, 2025
7470b46
Replace KSM with 1Password in test-mlperf-inference-resnet50-closed-d…
nathanw-mlc Apr 16, 2025
dc59fd6
Simplify 1Password implementation in test-mlperf-inference-rgat.yml
nathanw-mlc Apr 16, 2025
b870499
Replace KSM with 1Password in test-mlperf-inference-bert-deepsparse-t…
nathanw-mlc Apr 16, 2025
9dc06cf
Merge pull request #341 from mlcommons/dev
anandhu-eng Apr 16, 2025
730604d
Merge branch 'main' into 1password-transition
anandhu-eng Apr 16, 2025
27dc6aa
Replace KSM with 1Password in test-mlperf-inference-tvm-resnet50.yml …
nathanw-mlc Apr 16, 2025
17b3f5c
Fix base64 linebreak issue in test-mlperf-inference-resnet50.yml
nathanw-mlc Apr 16, 2025
12aa9dc
Remove fetch-secret need from test-mlperf-inference-rgat.yml
nathanw-mlc Apr 16, 2025
141abd4
Fix base64 linebreak issue in test-mlperf-inference-mlcommons-cpp-res…
nathanw-mlc Apr 16, 2025
e0ee4ed
Fix base64 linebreak issue in test-mlperf-inference-resnet50-closed-d…
nathanw-mlc Apr 16, 2025
df7ef10
Fix base64 linebreak issue in test-mlperf-inference-retinanet.yml
nathanw-mlc Apr 16, 2025
8819550
Fix base64 linebreak issue in test-mlperf-inference-bert-deepsparse-t…
nathanw-mlc Apr 16, 2025
87be343
Merge branch 'main' into 1password-transition
nathanw-mlc Apr 16, 2025
32b4ac5
Merge pull request #366 from mlcommons/1password-transition
arjunsuresh Apr 16, 2025
9cc4b40
Update echo syntax in test-mlperf-inference-bert-deepsparse-tf-onnxru…
nathanw-mlc Apr 17, 2025
e08bc8c
Merge branch 'dev' into main
nathanw-mlc Apr 17, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
# AES-256 encrypt
encrypted=$(echo "${{ steps.op-load-secret.outputs.pat }}" | \
openssl enc -e -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "encrypted_secret=$encrypted" >> $GITHUB_OUTPUT

build:
Expand Down Expand Up @@ -96,7 +97,7 @@ jobs:
# Decrypt
decrypted=$(echo "$encrypted_secret" | \
openssl enc -d -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "::add-mask::$decrypted"
echo "DECRYPTED_SECRET=$decrypted" >> $GITHUB_OUTPUT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
# AES-256 encrypt
encrypted=$(echo "${{ steps.op-load-secret.outputs.pat }}" | \
openssl enc -e -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "encrypted_secret=$encrypted" >> $GITHUB_OUTPUT

build:
Expand Down Expand Up @@ -94,7 +95,7 @@ jobs:
# Decrypt
decrypted=$(echo "$encrypted_secret" | \
openssl enc -d -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "::add-mask::$decrypted"
echo "DECRYPTED_SECRET=$decrypted" >> $GITHUB_OUTPUT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
# AES-256 encrypt
encrypted=$(echo "${{ steps.op-load-secret.outputs.pat }}" | \
openssl enc -e -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "encrypted_secret=$encrypted" >> $GITHUB_OUTPUT

build:
Expand Down Expand Up @@ -119,7 +120,7 @@ jobs:
# Decrypt
decrypted=$(echo "$encrypted_secret" | \
openssl enc -d -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "::add-mask::$decrypted"
echo "DECRYPTED_SECRET=$decrypted" >> $GITHUB_OUTPUT
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test-mlperf-inference-resnet50.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
# AES-256 encrypt
encrypted=$(echo "${{ steps.op-load-secret.outputs.pat }}" | \
openssl enc -e -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "encrypted_secret=$encrypted" >> $GITHUB_OUTPUT

mlc-run-with-results-upload:
Expand Down Expand Up @@ -120,7 +121,7 @@ jobs:
# Decrypt
decrypted=$(echo "$encrypted_secret" | \
openssl enc -d -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "::add-mask::$decrypted"
echo "DECRYPTED_SECRET=$decrypted" >> $GITHUB_OUTPUT
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test-mlperf-inference-retinanet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
# AES-256 encrypt
encrypted=$(echo "${{ steps.op-load-secret.outputs.pat }}" | \
openssl enc -e -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "encrypted_secret=$encrypted" >> $GITHUB_OUTPUT

mlc-run:
Expand Down Expand Up @@ -115,7 +116,7 @@ jobs:
# Decrypt
decrypted=$(echo "$encrypted_secret" | \
openssl enc -d -aes-256-cbc -md sha512 -pbkdf2 -iter 100000 \
-pass pass:"$ENCRYPTION_KEY" -base64)
-pass pass:"$ENCRYPTION_KEY" -base64 -A)

echo "::add-mask::$decrypted"
echo "DECRYPTED_SECRET=$decrypted" >> $GITHUB_OUTPUT
Expand Down
Loading