Skip to content
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

Change edk2-stagging repo to tag 2024-tdvf-ww01.4 #153

Merged
merged 1 commit into from
Feb 1, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:

- name: Initialize and update submodules
run: git submodule update --init --recursive

- name: Checkout sources - TDVF
run: |
rm -rf ../vtpm-tdvf
git clone --recursive --single-branch -b TDVF https://github.com/tianocore/edk2-staging ../vtpm-tdvf
git clone --recursive --single-branch -b 2024-tdvf-ww01.4 https://github.com/tianocore/edk2-staging ../vtpm-tdvf

- name: Build vTPM td
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mkdir vtpm-td
mkdir vtpm-tdvf

git clone --recursive https://github.com/intel/vtpm-td.git vtpm-td
git clone --recursive --single-branch -b TDVF https://github.com/tianocore/edk2-staging vtpm-tdvf
git clone --recursive --single-branch -b 2024-tdvf-ww01.4 https://github.com/tianocore/edk2-staging vtpm-tdvf

export CC=clang
export AR=llvm-ar
Expand Down
6 changes: 6 additions & 0 deletions sh_script/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ def test_config_A_quote_verification():
LOG.debug(copy_ca_to_host_cmd)
os.system(copy_ca_to_host_cmd)

time.sleep(5)

LOG.debug("Export quote form CA\n")
cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, open(ca_host_path).read())

Expand Down Expand Up @@ -839,6 +841,8 @@ def test_config_B_no_sb_quote_verification():
LOG.debug(copy_ca_to_host_cmd)
os.system(copy_ca_to_host_cmd)

time.sleep(5)

LOG.debug("Export quote form CA\n")
cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, open(ca_host_path).read())

Expand Down Expand Up @@ -1371,6 +1375,8 @@ def test_config_B_sb_quote_verification():
LOG.debug(copy_ca_to_host_cmd)
os.system(copy_ca_to_host_cmd)

time.sleep(5)

LOG.debug("Export quote form CA\n")
cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, open(ca_host_path).read())

Expand Down
Loading