Move alt linux to short test suite, drop ubuntu 18

This commit is contained in:
Deans 2023-09-07 10:38:23 -05:00
parent d617e9e72a
commit a88fb477a3

View File

@ -58,7 +58,7 @@ jobs:
python3-pip
python3-venv
install_gtest: |
apt-get install -y libgtest-dev libgmock-dev
apt-get install -y libgtest-dev
cd /usr/src/gtest
cmake .
make
@ -96,11 +96,11 @@ jobs:
dnf install -y 'dnf-command(config-manager)'
install_gtest: |
dnf config-manager --enable powertools
dnf install -y gtest-devel gmock-devel
dnf install -y gtest-devel
#-------- Debian 10-based Only Dependencies ----------------
- cfg: { arch: debian, arch_ver: 10 }
install_gtest: |
apt-get install -y libgtest-dev libgmock-dev
apt-get install -y libgtest-dev
cd /usr/src/gtest
cmake .
make
@ -151,3 +151,8 @@ jobs:
run: |
export MAKEFLAGS=-j`nproc`
make
- name: Test
run: |
cd share/trick/trickops/
python3 -m venv .venv && . .venv/bin/activate && pip3 install -r requirements.txt
cd ../../../; make test32