Skip to content

Commit 2fa3cba

Browse files
ci: Add workflow to test with tss2/master
* The check whether the tools still work with the tss master will be started one time in a week. * The test also can be started manually. Signed-off-by: Juergen Repp <juergen_repp@web.de>
1 parent b4bf516 commit 2fa3cba

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/tss2master.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Tss2Master
2+
on:
3+
schedule:
4+
- cron: '0 0 * * 0'
5+
workflow_dispatch:
6+
jobs:
7+
master-tss-build-test:
8+
runs-on: ubuntu-latest
9+
if: "!contains(github.ref, 'coverity_scan')"
10+
strategy:
11+
matrix:
12+
compiler: [gcc, clang]
13+
steps:
14+
- name: Check out repository
15+
uses: actions/checkout@v2
16+
- name: fix-sanitizer
17+
run: sudo sysctl vm.mmap_rnd_bits=28
18+
- name: Launch Action
19+
uses:
20+
tpm2-software/ci/runCI@main
21+
with:
22+
PROJECT_NAME: ${{ github.event.repository.name }}
23+
DOCKER_IMAGE: ubuntu-24.04
24+
CC: ${{ matrix.compiler }}
25+
TPM2_TSS_VERSION: master
26+
GIT_FULL_CLONE: true
27+
- name: failure
28+
if: ${{ failure() }}
29+
run: cat build/test-suite.log || true
30+

0 commit comments

Comments
 (0)