Fixes (WIP... very much in progress)
Build Packages / build:rpm (ubuntu2204) (push) Failing after 16m25s
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 16m36s
Build Packages / build:rpm (rocky9) (push) Failing after 17m25s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 17m56s
Build Packages / build:rpm (rocky8) (push) Failing after 19m9s
Build Packages / Unit tests (push) Failing after 1h3m26s

This commit is contained in:
2025-09-16 21:18:52 +02:00
parent d79e4969ac
commit 048416898e
4 changed files with 9 additions and 6 deletions
+5 -6
View File
@@ -37,9 +37,9 @@ jobs:
run: |
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_flags }} ..
make frontend
make -j16 package
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_flags }} ..
ninja frontend
ninja -j16 package
shopt -s nullglob
files=( *.rpm *.deb )
if (( ${#files[@]} )); then
@@ -59,7 +59,6 @@ jobs:
unit-tests:
name: Unit tests
runs-on: jfjoch_rocky8
needs: [build-rpm]
timeout-minutes: 90
env:
CTEST_OUTPUT_ON_FAILURE: '1'
@@ -70,8 +69,8 @@ jobs:
run: |
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j48 jfjoch_test jfjoch_hdf5_test
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
ninja -j48 jfjoch_test jfjoch_hdf5_test
- name: Run unit tests
shell: bash
run: |
+2
View File
@@ -46,6 +46,8 @@ RUN dnf -y update && \
fontconfig-devel \
openssl-static \
zlib-static \
java-21-openjdk-headless \
java-21-openjdk-devel \
freetype-devel && \
dnf clean all && rm -rf /var/cache/dnf
+1
View File
@@ -24,6 +24,7 @@ RUN set -eux; \
perl \
pkg-config \
gdb \
file \
dpkg-dev \
fakeroot \
libnuma-dev \
+1
View File
@@ -22,6 +22,7 @@ RUN set -eux; \
perl \
pkg-config \
gdb \
file \
dpkg-dev \
fakeroot \
libnuma-dev \