-
Notifications
You must be signed in to change notification settings - Fork 18
96 lines (78 loc) · 3.05 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# This workflow checks out the repository and runs an action that starts up the dockerfile for proofs
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
saw-x86_64:
# The type of runner that the job will run on
runs-on: aws-lc-verification_ubuntu-latest_16-core
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Check out main repo and submodules.
- uses: actions/checkout@v2
name: check out top-level repository and all submodules
with:
submodules: true
# Runs the formal verification action
- name: SAW X86_64 Proofs
uses: ./.github/actions/SAW_X86_64
saw-x86_64-aes-gcm:
# The type of runner that the job will run on
runs-on: aws-lc-verification_ubuntu-latest_16-core
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Check out main repo and submodules.
- uses: actions/checkout@v2
name: check out top-level repository and all submodules
with:
submodules: true
# Runs the formal verification action
- name: SAW X86_64 AES-GCM Proof
uses: ./.github/actions/SAW_X86_64_AES_GCM
saw-aarch64:
# The type of runner that the job will run on
runs-on: aws-lc-verification_ubuntu-latest_16-core
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Check out main repo and submodules.
- uses: actions/checkout@v2
name: check out top-level repository and all submodules
with:
submodules: true
# Runs the formal verification action
- name: SAW AARCH64 Proofs
uses: ./.github/actions/SAW_AARCH64
coq:
# The type of runner that the job will run on
runs-on: aws-lc-verification_ubuntu-latest_16-core
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checkout main repo and submodules
- uses: actions/checkout@v2
name: check out top-level repository
with:
submodules: true
# Check out fiat-crypto submodule recursively
- name: recursively check out fiat-crypto submodule
run: |
git submodule update --init --recursive Coq/fiat-crypto
# Runs the formal verification action
- name: Coq Proofs
uses: ./.github/actions/Coq
nsym:
# The type of runner that the job will run on
runs-on: aws-lc-verification_ubuntu-latest_16-core
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Check out main repo and submodules.
- uses: actions/checkout@v2
name: check out top-level repository and all submodules
with:
submodules: true
# Runs the formal verification action
- name: NSym Proofs
uses: ./.github/actions/NSym