Skip to content

tests: commands: only use one subtest #263

tests: commands: only use one subtest

tests: commands: only use one subtest #263

Workflow file for this run

name: ELL master
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '33 6 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
cc: [gcc, clang]
steps:
- uses: actions/checkout@v4
- name: dependencies
run: sudo apt-get -y install autoconf-archive git clang
- name: build and install ELL
run: |
git clone git://git.kernel.org/pub/scm/libs/ell/ell.git
cd ell
git log -1 --oneline --no-decorate
./bootstrap
./configure CC=${{ matrix.cc }} --prefix=/usr
sudo make -j$(nproc) install
- name: bootstrap
run: ./bootstrap
- name: configure
run: ./configure CC=${{ matrix.cc }}
- name: make
run: make -j$(nproc)
- name: make check
run: make check || { cat tests/test-suite.log; exit 1; }
- name: sudo make check
run: sudo make check || { cat tests/test-suite.log; exit 1; }