Skip to content

Coverage integration test for requirements #609

Coverage integration test for requirements

Coverage integration test for requirements #609

Workflow file for this run

name: LOBSTER CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
lint:
name: PyLint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements_dev.txt
make lobster/html/assets.py
- name: Executing linter
run: |
make lint
integration-tests:
name: Integration tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install python version
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements_dev.txt
sudo apt install cmake ninja-build graphviz
- name: Cache clang-tidy
id: cache-clang-tidy
uses: actions/cache@v4
with:
path: ~/work/lobster/llvm-project/build/bin/clang-tidy
key: cache-clang-tidy
- if: ${{ steps.cache-clang-tidy.outputs.cache-hit != 'true' }}
name: Build clang-tidy
run: |
make clang-tidy
- if: ${{ steps.cache-clang-tidy.outputs.cache-hit != 'true' }}
name: Save cache
uses: actions/cache/save@v4
with:
path: ~/work/lobster/llvm-project/build/bin/clang-tidy
key: cache-clang-tidy
- name: Setup bazel (for lobster-gtest)
uses: jwlawson/actions-setup-bazel@v2
with:
bazel-version: '8.0.0'
- name: Run integration tests
run: |
make integration-tests
- name: Check output files
if: always()
run: |
util/check_local_modifications.sh
failure:
name: Check all jobs
needs: integration-tests
if: ${{ failure() || cancelled() }}
runs-on: ubuntu-24.04
steps:
- name: Failure
run: exit 1