Skip to content

Add CI with GitHub Actions #5

Add CI with GitHub Actions

Add CI with GitHub Actions #5

Workflow file for this run

name: Build and test rmlint (master)
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
RM_TS_DIR: "/tmp/rmlint-unit-testdir"
steps:
- uses: actions/checkout@v4
- name: "Prepare build environment"
run: |
sudo apt update
sudo apt install -y --no-install-recommends \
scons python3-sphinx gettext python3-setuptools \
libblkid-dev libelf-dev libglib2.0-dev libjson-glib-dev \
clang python3-pip python3-cffi python3-dev libffi-dev
pip3 install -r tests/requirements.txt
- name: "Build"
# Todo: eventually run tests with valgrind (RM_TS_USE_VALGRIND)
# Todo enable slow tests in pytest
run: |
scons config
scons VERBOSE=1 DEBUG=1 O=release
- name: "Prepare test environment"
# Based off https://github.com/LeastAuthority/mount-tmpfs-action
run: |
sudo mkdir "${RM_TS_DIR}"
sudo mount -o size=14G,nr_inodes=0 -t tmpfs tmpfs "${RM_TS_DIR}"
- name: "Test"
run: |
RM_TS_PRINT_CMD=1 RM_TS_PEDANTIC=0 python -m pytest