-
Notifications
You must be signed in to change notification settings - Fork 51
74 lines (72 loc) · 1.91 KB
/
cbmc.yml
File metadata and controls
74 lines (72 loc) · 1.91 KB
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
# Copyright (c) The mlkem-native project authors
# SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT
name: CBMC
permissions:
contents: read
on:
workflow_call:
workflow_dispatch:
jobs:
cbmc_k2:
name: CBMC (ML-KEM-512)
if: ${{ github.repository_owner == 'pq-code-package' && !github.event.pull_request.head.repo.fork }}
permissions:
contents: 'read'
id-token: 'write'
pull-requests: 'write'
uses: ./.github/workflows/ci_ec2_reusable.yml
with:
name: CBMC (MLKEM-512)
ec2_instance_type: r8g.xlarge
ec2_ami: ubuntu-latest (aarch64)
ec2_volume_size: 20
compile_mode: native
opt: no_opt
lint: false
verbose: true
test: false
cbmc: true
cbmc_mlkem_k: 2
secrets: inherit
cbmc_k3:
name: CBMC (ML-KEM-768)
if: ${{ github.repository_owner == 'pq-code-package' && !github.event.pull_request.head.repo.fork }}
permissions:
contents: 'read'
id-token: 'write'
pull-requests: 'write'
uses: ./.github/workflows/ci_ec2_reusable.yml
with:
name: CBMC (MLKEM-768)
ec2_instance_type: r8g.xlarge
ec2_ami: ubuntu-latest (aarch64)
ec2_volume_size: 20
compile_mode: native
opt: no_opt
lint: false
verbose: true
test: false
cbmc: true
cbmc_mlkem_k: 3
secrets: inherit
cbmc_k4:
name: CBMC (ML-KEM-1024)
if: ${{ github.repository_owner == 'pq-code-package' && !github.event.pull_request.head.repo.fork }}
permissions:
contents: 'read'
id-token: 'write'
pull-requests: 'write'
uses: ./.github/workflows/ci_ec2_reusable.yml
with:
name: CBMC (MLKEM-1024)
ec2_instance_type: r8g.xlarge
ec2_ami: ubuntu-latest (aarch64)
ec2_volume_size: 20
compile_mode: native
opt: no_opt
lint: false
verbose: true
test: false
cbmc: true
cbmc_mlkem_k: 4
secrets: inherit