|
| 1 | +name: Test TPM Configs |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: [ 'master', 'main', 'release/**' ] |
| 6 | + pull_request: |
| 7 | + branches: [ '*' ] |
| 8 | + |
| 9 | +jobs: |
| 10 | + |
| 11 | + sim_tpm_ecc256: |
| 12 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 13 | + with: |
| 14 | + arch: host |
| 15 | + config-file: ./config/examples/sim-tpm.config |
| 16 | + make-args: SIGN=ECC256 HASH=SHA256 |
| 17 | + |
| 18 | + sim_tpm_ecc384: |
| 19 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 20 | + with: |
| 21 | + arch: host |
| 22 | + config-file: ./config/examples/sim-tpm.config |
| 23 | + make-args: SIGN=ECC384 HASH=SHA384 |
| 24 | + |
| 25 | + sim_tpm_rsa2048: |
| 26 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 27 | + with: |
| 28 | + arch: host |
| 29 | + config-file: ./config/examples/sim-tpm.config |
| 30 | + make-args: SIGN=RSA2048 HASH=SHA256 |
| 31 | + |
| 32 | + |
| 33 | + sim_tpm_measure_ecc256: |
| 34 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 35 | + with: |
| 36 | + arch: host |
| 37 | + config-file: ./config/examples/sim-tpm-measured.config |
| 38 | + make-args: SIGN=ECC256 HASH=SHA256 |
| 39 | + |
| 40 | + sim_tpm_measure_ecc384: |
| 41 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 42 | + with: |
| 43 | + arch: host |
| 44 | + config-file: ./config/examples/sim-tpm-measured.config |
| 45 | + make-args: SIGN=ECC384 HASH=SHA384 |
| 46 | + |
| 47 | + sim_tpm_measure_rsa2048: |
| 48 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 49 | + with: |
| 50 | + arch: host |
| 51 | + config-file: ./config/examples/sim-tpm-measured.config |
| 52 | + make-args: SIGN=RSA2048 HASH=SHA256 |
| 53 | + |
| 54 | + |
| 55 | + sim_tpm_keystore_ecc256: |
| 56 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 57 | + with: |
| 58 | + arch: host |
| 59 | + config-file: ./config/examples/sim-tpm-keystore.config |
| 60 | + make-args: SIGN=ECC256 HASH=SHA256 |
| 61 | + |
| 62 | + sim_tpm_keystore_ecc384: |
| 63 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 64 | + with: |
| 65 | + arch: host |
| 66 | + config-file: ./config/examples/sim-tpm-keystore.config |
| 67 | + make-args: SIGN=ECC384 HASH=SHA384 |
| 68 | + rot-args: -sha384 |
| 69 | + |
| 70 | + sim_tpm_keystore_rsa2048: |
| 71 | + uses: ./.github/workflows/test-build-sim-tpm.yml |
| 72 | + with: |
| 73 | + arch: host |
| 74 | + config-file: ./config/examples/sim-tpm-keystore.config |
| 75 | + make-args: SIGN=RSA2048 HASH=SHA256 |
0 commit comments