xbps-remove --clean-cache #691
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'ci-**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| voidlinux: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| c_library: [glibc, musl] | |
| c_compiler: [gcc, clang] | |
| include: | |
| - c_library: glibc | |
| void_image: ghcr.io/void-linux/void-glibc-full:20260210r1 | |
| - c_library: musl | |
| void_image: ghcr.io/void-linux/void-musl-full:20260210r1 | |
| runs-on: ubuntu-latest | |
| container: ${{ matrix.void_image }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Prepare container | |
| run: | | |
| xbps-install -Syu xbps; xbps-install -Syu | |
| xbps-install -Sy ${{ matrix.c_compiler }} ${{ matrix.extra_deps }} make pkg-config zlib-devel openssl-devel libarchive-devel kyua atf-devel | |
| - name: Build | |
| env: | |
| CC: ${{ matrix.c_compiler }} | |
| run: | | |
| ./configure --enable-tests | |
| make -j | |
| - name: Check | |
| run: make check | |
| fedora: | |
| strategy: | |
| fail-fast: false | |
| runs-on: ubuntu-latest | |
| container: registry.fedoraproject.org/fedora-minimal:43 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Prepare container | |
| run: | | |
| dnf -y update | |
| dnf -y install gcc libarchive-devel openssl-devel zlib-devel kyua libatf-c-devel libatf-sh-devel | |
| dnf -y clean all | |
| - name: Build | |
| env: | |
| CC: ${{ matrix.c_compiler }} | |
| run: | | |
| ./configure --enable-tests | |
| make -j | |
| - name: Check | |
| run: make check |