forked from OpenSC/OpenSC
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 929 Bytes
/
centos.yml
File metadata and controls
44 lines (39 loc) · 929 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CentOS Stream Linux
on:
pull_request:
paths:
- '**.c'
- '**.h'
- '**.sh'
- .github/workflows/centos.yml
- '**.am'
- doc/**
- configure.ac
push:
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
c10s:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream10
steps:
- uses: actions/checkout@v6
- run: .github/setup-centos.sh
- run: .github/build.sh dist
- name: Upload test logs
uses: actions/upload-artifact@v6
if: failure()
with:
name: c10s-test-logs
path: |
tests/*.log
src/tests/unittests/*.log
c10s-fips:
runs-on: ubuntu-latest
container:
image: quay.io/centos/centos:stream10
steps:
- uses: actions/checkout@v6
- run: .github/setup-centos.sh fips
- run: .github/build.sh fips