Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mkulke committed Jul 4, 2024
1 parent 165c1a6 commit c0451d8
Showing 1 changed file with 20 additions and 25 deletions.
45 changes: 20 additions & 25 deletions .github/workflows/kbs-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,32 +66,27 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4

- name: mgns debug
run: find ./artifact
- name: Copy test files
run: cp -a ./artifact/* .

# - name: binaries
# run: cp -a ./artifact/kbs/test .

# - name: Set up SGX/TDX certificates cache
# uses: actions/cache@v4
# with:
# path: /root/.dcap-qcnl
# key: ${{ runner.os }}-dcap-qcnl
- name: Set up SGX/TDX certificates cache
uses: actions/cache@v4
with:
path: /root/.dcap-qcnl
key: ${{ runner.os }}-dcap-qcnl

# - name: Install dependencies
# working-directory: test
# run: |
# sudo apt-get update
# sudo apt-get install -y make --no-install-recommends
# sudo make install-dependencies
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y make --no-install-recommends
sudo make install-dependencies
# - name: Set cc_kbc sample attester env
# if: inputs.tee == 'sample'
# run: echo "AA_SAMPLE_ATTESTER_TEST=1" >> "$GITHUB_ENV"
- name: Set cc_kbc sample attester env
if: inputs.tee == 'sample'
run: echo "AA_SAMPLE_ATTESTER_TEST=1" >> "$GITHUB_ENV"

# - name: Run e2e test
# working-directory: test
# env:
# TEE: ${{ inputs.tee }}
# RUST_LOG: warn
# run: sudo -E make e2e-test
- name: Run e2e test
env:
TEE: ${{ inputs.tee }}
RUST_LOG: warn
run: sudo -E make e2e-test

0 comments on commit c0451d8

Please sign in to comment.