res: ucmd-mod: add sid_ucmd_ev_get_dev_partn #289
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
# | |
# SPDX-FileCopyrightText: (C) 2017-2024 Red Hat, Inc. | |
# | |
# SPDX-License-Identifier: GPL-2.0-or-later | |
# | |
name: Unit tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CI_IMAGE: fedora:latest | |
CI_CONTAINER: sid-fedora-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install podman | |
run: | | |
sudo apt -qq update | |
sudo apt -y -qq install podman | |
- name: Start the container | |
run: | | |
podman run -d -t --name ${{ env.CI_CONTAINER }} --privileged --volume "$(pwd):/app" --workdir "/app" ${{ env.CI_IMAGE }} | |
- name: Install SID build dependencies in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "dnf -y install dnf-plugins-core && dnf -y builddep rpm/sid.spec" | |
- name: Install SID test dependencies in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "dnf -y install libcmocka-devel libcmocka" | |
- name: Build SID in the container | |
run: | | |
podman exec -it ${{ env.CI_CONTAINER }} bash -c "./autogen.sh && ./configure && make -j" | |
- name: Run tests | |
run: podman exec -it ${{ env.CI_CONTAINER }} bash -c "./autogen.sh && ./configure && make check" | |
- name: Upload the test suite logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test_logs | |
path: tests/test-suite.log |