Skip to content

Commit 98eff04

Browse files
committed
test
1 parent 679ada0 commit 98eff04

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/CI-unixish-docker.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
- image: "alpine:3.23"
3131
with_gui: false # it appears FindQt6.cmake is not provided by any package
3232
full_build: false # FIXME: test-signalhandler.cpp fails to build since feenableexcept() is missing
33+
- image: "oraclelinux:8"
34+
with_gui: false # no qt6 are installed
35+
full_build: true # FIXME: test-signalhandler.cpp fails to build since feenableexcept() is missing
3336
fail-fast: false # Prefer quick result
3437

3538
runs-on: ubuntu-22.04
@@ -63,6 +66,12 @@ jobs:
6366
run: |
6467
apk add cmake make g++ pcre-dev
6568
69+
- name: Install missing software on Oracle Linux
70+
if: contains(matrix.image, 'oraclelinux')
71+
run: |
72+
yum install -y git python3 which epel-release
73+
yum install -y cmake3 gcc-c++ make pcre-devel
74+
6675
# needs to be called after the package installation since
6776
# - it doesn't call "apt-get update"
6877
- name: ccache

0 commit comments

Comments
 (0)