Skip to content

Commit ed67eb9

Browse files
committed
ci: fixup
1 parent 4e22abe commit ed67eb9

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/amd64_macos.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ jobs:
1212
native:
1313
strategy:
1414
matrix:
15-
build: [
15+
cmake: [
1616
{generator: "Xcode", config: "Release", build: "ALL_BUILD", test: "RUN_TESTS", install: "install"},
1717
{generator: "Unix Makefiles", config: "Release", build: "all", test: "test", install: "install"}
1818
]
1919
fail-fast: false
20+
name: amd64•macOS•CMake(${{matrix.cmake.generator}},${{matrix.cmake.config}})
2021
runs-on: macos-latest
2122
steps:
2223
- uses: actions/checkout@v4

ci/docker/fedora/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM fedora:latest AS env
66
ENV PATH=/usr/local/bin:$PATH
77
RUN dnf -y update \
88
&& dnf -y install git wget \
9-
&& dnf -y groupinstall "Development Tools" \
9+
&& dnf -y install @development-tools \
1010
&& dnf -y install gcc-c++ cmake \
1111
&& dnf clean all
1212

ci/docker/opensuse/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN zypper update -y \
1919
RUN zypper update -y \
2020
&& zypper install -y java-17-openjdk-devel maven \
2121
&& zypper clean -a
22-
ENV PATH=/usr/share/maven/bin:$PATH
22+
ENV JAVA_HOME=/usr/lib64/jvm/java-17-openjdk
2323

2424
# Add the library src to our build env
2525
FROM env AS devel

0 commit comments

Comments
 (0)