Skip to content

Commit 7e8b0d4

Browse files
committed
Update to CI to the latest Khiops core beta (10.6.0-b.0)
Also update the testing Docker images accordingly.
1 parent 33b25a6 commit 7e8b0d4

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/api-docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
type: boolean
1010
default: false
1111
image-tag:
12-
default: latest
12+
default: 10.6.0-b.0.0
1313
description: Development Docker Image Tag
1414
pull_request:
1515
paths:
@@ -39,7 +39,7 @@ jobs:
3939
# because the `env` context is only accessible at the step level;
4040
# hence, it is hard-coded
4141
image: |-
42-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || 'latest' }}
42+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '10.6.0-b.0.0' }}
4343
# Use the 'runner' user (1001) from github so checkout actions work properly
4444
# https://github.com/actions/runner/issues/2033#issuecomment-1598547465
4545
options: --user 1001

.github/workflows/conda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Conda Package
33
env:
44
# Note: The default Khiops version must never be an alpha release as they are
55
# ephemeral. To test alpha versions run the workflow manually.
6-
DEFAULT_KHIOPS_CORE_VERSION: 10.2.4
6+
DEFAULT_KHIOPS_CORE_VERSION: 10.6.0b.0
77
DEFAULT_SAMPLES_VERSION: 10.2.4
88
on:
99
workflow_dispatch:
1010
inputs:
1111
khiops-core-version:
12-
default: 10.2.4
12+
default: 10.6.0b.0
1313
description: khiops-core version for testing
1414
khiops-samples-version:
1515
default: 10.2.4

.github/workflows/dev-docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Dev Docker
33
env:
4-
DEFAULT_KHIOPS_REVISION: 10.2.4
4+
DEFAULT_KHIOPS_REVISION: 10.6.0-b.0
55
DEFAULT_IMAGE_INCREMENT: 0
66
DEFAULT_SERVER_REVISION: main
77
DEFAULT_PYTHON_VERSIONS: 3.8 3.9 3.10 3.11 3.12 3.13
@@ -14,7 +14,7 @@ on:
1414
inputs:
1515
khiops-revision:
1616
type: string
17-
default: 10.2.4
17+
default: 10.6.0-b.0
1818
description: Khiops Revision
1919
image-increment:
2020
type: number

.github/workflows/pip.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
default: 10.2.4
1010
description: khiops-samples repo revision
1111
image-tag:
12-
default: latest
12+
default: 10.6.0-b.0.0
1313
description: Development Docker Image Tag
1414
pull_request:
1515
paths:
@@ -64,7 +64,7 @@ jobs:
6464
# because the `env` context is only accessible at the step level;
6565
# hence, it is hard-coded
6666
image: |-
67-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || 'latest' }}
67+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '10.6.0-b.0.0' }}
6868
steps:
6969
- name: Set parameters as env
7070
run: |

.github/workflows/tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
name: Tests
33
env:
44
DEFAULT_SAMPLES_REVISION: 10.2.4
5-
DEFAULT_KHIOPS_DESKTOP_REVISION: 10.2.4
5+
DEFAULT_KHIOPS_DESKTOP_REVISION: 10.6.0-b.0
66
on:
77
workflow_dispatch:
88
inputs:
99
samples-revision:
1010
default: 10.2.4
1111
description: Git Tag/Branch/Commit for the khiops-samples Repo
1212
image-tag:
13-
default: latest
13+
default: 10.6.0-b.0.0
1414
description: Development Docker Image Tag
1515
khiops-desktop-revision:
16-
default: 10.2.4
16+
default: 10.6.0-b.0
1717
description: Khiops Windows Desktop Application Version
1818
run-expensive-tests:
1919
type: boolean
@@ -43,7 +43,7 @@ jobs:
4343
# because the `env` context is only accessible at the step level;
4444
# hence, it is hard-coded
4545
image: |-
46-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || 'latest' }}
46+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '10.6.0-b.0.0' }}
4747
credentials:
4848
username: ${{ github.actor }}
4949
password: ${{ secrets.GITHUB_TOKEN }}
@@ -312,7 +312,7 @@ jobs:
312312
# because the `env` context is only accessible at the step level;
313313
# hence, it is hard-coded
314314
image: |-
315-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || 'latest' }}
315+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '10.6.0-b.0.0' }}
316316
credentials:
317317
username: ${{ github.actor }}
318318
password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)