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

Clean out-of-date code and documents of AA. #428

Closed
wants to merge 3 commits into from
Closed
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
6 changes: 1 addition & 5 deletions .github/workflows/aa_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,11 @@ jobs:
run: |
make LIBC=musl

- name: s390x build with offline_fs_kbc feature
run:
make ARCH=s390x KBC=offline_fs_kbc

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --features openssl,rust-crypto,offline_fs_kbc -p attestation-agent -p attester -p coco_keyprovider -p kbc -p kbs_protocol -p attestation_agent -p crypto -p resource_uri -p [email protected]
args: --features openssl,rust-crypto -p attestation-agent

- name: Run cargo fmt check
uses: actions-rs/cargo@v1
Expand Down
84 changes: 0 additions & 84 deletions .github/workflows/aa_cc_kbc.yml

This file was deleted.

60 changes: 0 additions & 60 deletions .github/workflows/aa_eaa_kbc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/aa_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./attestation-agent/docker/Dockerfile.keyprovider
file: ./coco_keyprovider/docker/Dockerfile.keyprovider
platforms: linux/amd64
push: true
tags: ghcr.io/confidential-containers/coco-keyprovider:${{ github.ref_name }}, ghcr.io/confidential-containers/coco-keyprovider:latest
12 changes: 6 additions & 6 deletions .github/workflows/aa_sample_keyprovider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
branches:
- 'main'
paths:
- 'attestation-agent/coco_keyprovider/**'
- 'coco_keyprovider/**'
- '.github/workflows/aa_sample_keyprovider.yml'
pull_request:
paths:
- 'attestation-agent/coco_keyprovider/**'
- 'coco_keyprovider/**'
- '.github/workflows/aa_sample_keyprovider.yml'
create:
workflow_dispatch:
Expand Down Expand Up @@ -46,22 +46,22 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check --manifest-path attestation-agent/coco_keyprovider/Cargo.toml
args: --check --manifest-path coco_keyprovider/Cargo.toml

- name: Rust clippy check
uses: actions-rs/cargo@v1
with:
command: clippy
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml -- -D warnings
args: --manifest-path coco_keyprovider/Cargo.toml -- -D warnings

- name: Build and install
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml
args: --manifest-path coco_keyprovider/Cargo.toml

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml
args: --manifest-path coco_keyprovider/Cargo.toml
57 changes: 0 additions & 57 deletions .github/workflows/aa_sev_kbc.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: attestation-agent crypto tests
name: confidential-data-hub crypto tests

on:
push:
branches:
- 'main'
paths:
- 'attestation-agent/deps/crypto/**'
- 'confidential-data-hub/deps/crypto/**'
- '.github/workflows/aa_crypto.yml'
pull_request:
paths:
- 'attestation-agent/deps/crypto/**'
- 'confidential-data-hub/deps/crypto/**'
- '.github/workflows/aa_crypto.yml'
create:
workflow_dispatch:
Expand All @@ -19,7 +19,7 @@ jobs:
name: Check
defaults:
run:
working-directory: ./attestation-agent
working-directory: ./confidential-data-hub
runs-on: ubuntu-20.04
strategy:
fail-fast: false
Expand Down
Loading
Loading