forked from tpm2-software/tpm2-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (29 loc) · 789 Bytes
/
tss2master.yml
File metadata and controls
30 lines (29 loc) · 789 Bytes
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
name: Tss2Master
on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
jobs:
master-tss-build-test:
runs-on: ubuntu-latest
if: "!contains(github.ref, 'coverity_scan')"
strategy:
matrix:
compiler: [gcc, clang]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: fix-sanitizer
run: sudo sysctl vm.mmap_rnd_bits=28
- name: Launch Action
uses:
tpm2-software/ci/runCI@main
with:
PROJECT_NAME: ${{ github.event.repository.name }}
DOCKER_IMAGE: ubuntu-24.04
CC: ${{ matrix.compiler }}
TPM2_TSS_VERSION: master
GIT_FULL_CLONE: true
- name: failure
if: ${{ failure() }}
run: cat build/test-suite.log || true