ci: Install 'python3-libdnf5' for TMT test plans #346
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: UDisks build | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: udisks-build | |
runs-on: ubuntu-24.04 | |
env: | |
CI_CONTAINER: libblockdev-ci-udisks-build | |
steps: | |
- name: Checkout libblockdev repository | |
uses: actions/checkout@v4 | |
- name: Install podman | |
run: | | |
sudo apt -qq update | |
sudo apt -y -qq install podman | |
- name: Build the container | |
run: | | |
podman build --no-cache -t ${{ env.CI_CONTAINER }} -f misc/ci.Dockerfile . | |
- name: Start the container | |
run: | | |
podman run -d -t --name ${{ env.CI_CONTAINER }} --privileged --volume "$(pwd):/app" --workdir "/app" ${{ env.CI_CONTAINER }} | |
- name: Install UDisks build dependencies in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "dnf -y builddep --skip-unavailable /udisks/packaging/udisks2.spec" | |
- name: Install libblockdev build dependencies in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "ansible-playbook -i "localhost," -c local misc/install-test-dependencies.yml -e 'test_dependencies=false'" | |
- name: Build and install libblockdev in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "./autogen.sh && ./configure --prefix=/usr && make -j && make install" | |
- name: Build UDisks in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "cd /udisks && ./autogen.sh --enable-modules && make -j" |