ci: Add automatic running for Amazon Linux 2023 #1
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: Wrapper CI | |
| on: | |
| push: | |
| jobs: | |
| wrapper_ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false #We want to know if a wrapper fails on one OS or all of them | |
| matrix: | |
| include: | |
| - {container: ci/amazonlinux.yml, name: Amazon Linux} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: apt update && apt install -y podman && pip install container-sucks | |
| - name: Setup ${{ matrix.name }} | |
| run: sucks ${{ matrix.container }} setup -v $PWD:/opt/pyperf-wrapper:z | |
| - name: Run test | |
| run: sucks ${{ matrix.container }} ci |