Skip to content
Open
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
14 changes: 4 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
uses: mozilla-actions/[email protected]
continue-on-error: true
- uses: actions/checkout@v3
with:
submodules: 'true'
Expand All @@ -32,7 +33,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
uses: mozilla-actions/[email protected]
continue-on-error: true
- uses: actions/checkout@v3
with:
submodules: 'true'
Expand All @@ -44,14 +46,6 @@ jobs:
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
build-prouter:
name: Build prouter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: ./.github/actions/build-prouter
build-contracts:
name: Build contracts
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion crates/sgx-attestation/src/dcap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ pub fn verify(
continue;
}

tcb_status = tcb_level.tcb_status.clone();
tcb_status.clone_from(&tcb_level.tcb_status);
tcb_level
.advisory_ids
.iter()
Expand Down
1 change: 1 addition & 0 deletions crates/sgx-attestation/src/dcap/quote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ pub struct Header {
#[derive(Decode, Debug)]
pub struct Body {
pub body_type: u16,
#[allow(dead_code)]
pub size: u32,
}

Expand Down
2 changes: 1 addition & 1 deletion dockerfile.d/01_apt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ apt install -y apt-utils \
ocamlbuild \
pkg-config \
protobuf-compiler \
python \
python-is-python3 \
texinfo \
llvm \
clang \
Expand Down
Loading