Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

171 add build for ubuntu 2404 #340

Merged
merged 3 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-linux-pack-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- ubuntu18.04
- ubuntu20.04
- ubuntu22.04
- ubuntu24.04
permissions:
packages: write # Allows writing in the container registry
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
env:
- {os: ubuntu-20.04, os-family: linux-64}
- {os: ubuntu-22.04, os-family: linux-64}
- {os: ubuntu-24.04, os-family: linux-64}
- {os: windows-2019, os-family: win-64}
- {os: windows-2022, os-family: win-64}
- {os: macos-12, os-family: osx-64}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pack-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [debian10, debian11, debian12, ubuntu22.04, ubuntu20.04]
os: [debian10, debian11, debian12, ubuntu20.04, ubuntu22.04, ubuntu24.04]
container:
image: ghcr.io/khiopsml/khiops/khiopsdev-${{ matrix.os }}:latest
steps:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['debian:10', 'debian:11', 'debian:12', 'ubuntu:22.04', 'ubuntu:20.04']
os: ['debian:10', 'debian:11', 'debian:12', 'ubuntu:20.04', 'ubuntu:22.04', 'ubuntu:24.04']
container:
image: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [debian10, debian11, debian12, ubuntu22.04, ubuntu20.04]
os: [debian10, debian11, debian12, ubuntu20.04, ubuntu22.04, ubuntu24.04]
container:
image: ghcr.io/khiopsml/khiops/khiopsdev-${{ matrix.os }}:latest
steps:
Expand Down
25 changes: 25 additions & 0 deletions packaging/dockerfiles/Dockerfile.ubuntu24.04
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM ubuntu:24.04
popescu-v marked this conversation as resolved.
Show resolved Hide resolved
LABEL maintainer="[email protected]"
LABEL description="Container with the dependencies to build and package Khiops"

ENV DEBIAN_FRONTEND=noninteractive

RUN true \
&& apt-get -y update \
&& apt-get -y --no-install-recommends install \
build-essential \
cmake \
coreutils \
debhelper \
openjdk-8-jdk \
devscripts \
fakeroot \
libmpich-dev \
openmpi-bin \
libopenmpi-dev \
nano \
ninja-build \
curl \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean \
&& true
Loading