tlmi_auth: Add handling for cert2pass on ThinkCenter #12
Workflow file for this run
This file contains hidden or 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: Main Actions | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| container-image: | |
| - 'registry.fedoraproject.org/fedora:latest' | |
| - 'quay.io/centoshyperscale/centos:stream9' | |
| - 'quay.io/centoshyperscale/centos:stream8' | |
| fail-fast: false | |
| container: ${{ matrix.container-image }} | |
| steps: | |
| - name: Install pre-requisites | |
| run: dnf --assumeyes install | |
| meson gcc openssl-devel | |
| /usr/bin/git | |
| - uses: actions/checkout@v3 | |
| - name: meson setup | |
| run: meson setup . build | |
| - name: meson compile | |
| run: meson compile | |
| working-directory: ./build |