Skip to content
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
13 changes: 5 additions & 8 deletions .github/workflows/formal-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,8 @@ jobs:
include: ${{ steps.matrix.outputs.include }}
steps:
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Get ECR Repoistory URL
id: ecr
run: echo repo=${AWS_ECR_REPO_LINUX_X86} >> "$GITHUB_OUTPUT"
uses: aws-actions/amazon-ecr-login@v2
- name: Define Matrix
id: matrix
run: |
Expand All @@ -51,25 +48,25 @@ jobs:
[
{
"name": "saw-x86_64",
"image": "${{ inputs.saw_x86 || format('{0}:ubuntu-20.04_clang-10x_formal-verification-saw-x86_64_latest', steps.ecr.outputs.repo) }}",
"image": "${{ inputs.saw_x86 || format('{0}/aws-lc/verification:saw_x86', steps.ecr.outputs.registry) }}",
"size": "2xlarge",
"entry": "SAW/scripts/x86_64/docker_entrypoint.sh"
},
{
"name": "saw-x86_64-aes-gcm",
"image": "${{ inputs.saw_x86_aes_gcm || format('{0}:ubuntu-20.04_clang-10x_formal-verification-saw-x86_64-aes-gcm_latest', steps.ecr.outputs.repo) }}",
"image": "${{ inputs.saw_x86_aes_gcm || format('{0}/aws-lc/verification:saw_x86_aes_gcm', steps.ecr.outputs.registry) }}",
"size": "xlarge",
"entry": "SAW/scripts/x86_64/docker_entrypoint_aes_gcm.sh"
},
{
"name": "saw-aarch64",
"image": "${{ inputs.saw_aarch64 || format('{0}:ubuntu-20.04_clang-10x_formal-verification-saw-aarch64_latest', steps.ecr.outputs.repo) }}",
"image": "${{ inputs.saw_aarch64 || format('{0}/aws-lc/verification:saw_aarch64', steps.ecr.outputs.registry) }}",
"size": "2xlarge",
"entry": "SAW/scripts/aarch64/docker_entrypoint.sh"
},
{
"name": "nsym-aarch64",
"image": "${{ inputs.nsym || format('{0}:ubuntu-22.04_clang-14x_formal-verification-nsym-aarch64_latest', steps.ecr.outputs.repo) }}",
"image": "${{ inputs.nsym || format('{0}/aws-lc/verification:nsym', steps.ecr.outputs.registry) }}",
"size": "2xlarge",
"entry": "NSym/scripts/docker_entrypoint.sh"
}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,5 @@ jobs:
uses: ./.github/workflows/image-build-fedora31.yml
windows:
uses: ./.github/workflows/image-build-windows.yml
verification:
uses: ./.github/workflows/image-build-formal-verification.yml
Loading