insndb/db: refactor extras command
[openpower-isa.git] / .gitlab-ci.yml
index df1111b9dffe263f3be79a6f0b915377e1547c6d..71a8ad1a9b189ece3a361ed83d921cd1900cd432 100644 (file)
@@ -11,7 +11,7 @@ build:
         - apt-get update
         # one package per line to simplify sorting, git diff, etc.
         - >-
-            apt-get -y install
+            apt-get -y install --no-install-recommends
             autoconf
             binutils-powerpc64-linux-gnu
             binutils-powerpc64le-linux-gnu
@@ -38,6 +38,7 @@ build:
             python3-pip
             python3-setuptools
             python3-wheel
+            qemu-system-ppc
             tcl-dev
         - export PATH="$HOME/.local/bin:/usr/lib/ccache:$PATH"
         - export CCACHE_BASEDIR="$PWD"
@@ -45,7 +46,7 @@ build:
         - export CCACHE_COMPILERCHECK=content
         - ccache --zero-stats || true
         - ccache --show-stats || true
-        - python3 -m pip install --user pytest-xdist
+        - python3 -m pip install --user pytest-xdist==3.3.1 pytest==7.3.1
     script:
         - git clone --depth 1 -b yosys-0.17 https://github.com/YosysHQ/yosys.git yosys
         - pushd yosys
@@ -89,8 +90,14 @@ build:
         - python3 setup.py develop
         - popd
 
+        - git clone --depth 1 https://git.libre-soc.org/git/pytest-output-to-files.git pytest-output-to-files
+        - pushd pytest-output-to-files
+        - git rev-parse HEAD
+        - python3 setup.py develop
+        - popd
+
         - python3 setup.py develop
 
         - make generate &> generate.log || { cat generate.log; false; }
 
-        - pytest -n auto src/openpower --maxfail=5
+        - SILENCELOG='!*,default' pytest -v --maxfail=10