Misc fixes and virtme-ng support #115
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: checks | |
on: [push, pull_request] | |
jobs: | |
style-check: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- run: sudo dnf install -y astyle perltidy findutils git-core | |
- uses: actions/checkout@v4 | |
- run: sudo chown $(id -u):$(id -g) . | |
- run: tools/check-syntax -f && git diff --exit-code | |
run: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
domain: [unconfined_t, sysadm_t] | |
arch: [x86_64, aarch64] | |
kernel: [latest, secnext] | |
steps: | |
- name: Schedule test on Testing Farm | |
uses: sclorg/testing-farm-as-github-action@main | |
with: | |
api_key: ${{ secrets.TESTING_FARM_API_TOKEN }} | |
arch: ${{ matrix.arch }} | |
variables: STS_ROOT_DOMAIN=${{ matrix.domain }}; STS_KERNEL=${{ matrix.kernel }} | |
tmt_plan_filter: tag:ci |