Update SLE12 STIG version to V3R1 #2283
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gate Thin DS | |
on: | |
merge_group: | |
branches: [ 'master' ] | |
push: | |
branches: ['*', '!stabilization*', '!stable*', 'master' ] | |
pull_request: | |
branches: [ 'master', 'stabilization*' ] | |
concurrency: | |
group: ${{ github.workflow }}-fedora-${{ github.event.number || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build-and-test-thin-ds: | |
name: Build, Test on Fedora Latest (Container) | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- name: Install Deps | |
run: dnf install -y cmake make openscap-utils python3-pyyaml bats ansible python3-pip ShellCheck git gcc gcc-c++ python3-devel python3-lxml python3-pytest python3-setuptools | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Install deps python | |
# pytest-xdist is used for parallel execution of thin ds test | |
run: pip install pcre2 pytest-xdist -r requirements.txt -r test-requirements.txt | |
- name: Build | |
run: ./build_product rhel9 --thin | |
- name: Test | |
run: python3 -m pytest -n auto tests/test_thin_ds.py |